[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Makefile between version 1.433 and 1.435

version 1.433, 2014/08/08 20:34:06 version 1.435, 2014/08/10 02:45:04
Line 52  INSTALL_MAN  = $(INSTALL_DATA)
Line 52  INSTALL_MAN  = $(INSTALL_DATA)
   
 # --- user settings related to database support ------------------------  # --- user settings related to database support ------------------------
   
 # If you want to build without database support, for example to avoid  # Building apropos(1) and makewhatis(8) requires both SQLite3 and fts(3).
 # the dependency on SQLite3, comment the following line.  # To avoid those dependencies, comment the following line.
 # However, you won't get apropos(1) and makewhatis(8) in that case.  # Be careful: the fts(3) implementation in glibc is broken on 32bit
   # machines, see: https://sourceware.org/bugzilla/show_bug.cgi?id=15838
 #  #
 BUILD_TARGETS   += db-build  BUILD_TARGETS   += db-build
   
Line 488  mdocml.tar.gz: $(DISTFILES)
Line 489  mdocml.tar.gz: $(DISTFILES)
   
 config.h: configure config.h.pre config.h.post $(TESTSRCS)  config.h: configure config.h.pre config.h.post $(TESTSRCS)
         rm -f config.log          rm -f config.log
         CC="$(CC)" CFLAGS="$(CFLAGS)" VERSION="$(VERSION)" ./configure          CC="$(CC)" CFLAGS="$(CFLAGS)" DBLIB="$(DBLIB)" \
                   VERSION="$(VERSION)" ./configure
   
 .PHONY:          base-install cgi-install db-install install www-install  .PHONY:          base-install cgi-install db-install install www-install
 .PHONY:          clean depend  .PHONY:          clean depend

Legend:
Removed from v.1.433  
changed lines
  Added in v.1.435

CVSweb