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

Diff for /mandoc/Makefile between version 1.432 and 1.436

version 1.432, 2014/08/05 12:50:52 version 1.436, 2014/08/10 23:54:41
Line 15 
Line 15 
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF  # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.  # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   
 VERSION          = 1.13.0  VERSION          = 1.13.1
   
 # === USER SETTINGS ====================================================  # === USER SETTINGS ====================================================
   
Line 34  VERSION   = 1.13.0
Line 34  VERSION   = 1.13.0
 #  #
 CFLAGS          += -DUSE_WCHAR  CFLAGS          += -DUSE_WCHAR
   
 CFLAGS          += -g -DHAVE_CONFIG_H  CFLAGS          += -g -W -Wall -Wstrict-prototypes
 CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS          += -Wno-unused-parameter -Wwrite-strings
 PREFIX           = /usr/local  PREFIX           = /usr/local
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
 INCLUDEDIR       = $(PREFIX)/include/mandoc  INCLUDEDIR       = $(PREFIX)/include/mandoc
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 189  SRCS   = apropos.c \
Line 190  SRCS   = apropos.c \
                    vol.c \                     vol.c \
                    $(TESTSRCS)                     $(TESTSRCS)
   
 DISTFILES        = LICENSE \  DISTFILES        = INSTALL \
                      LICENSE \
                    Makefile \                     Makefile \
                    Makefile.depend \                     Makefile.depend \
                    NEWS \                     NEWS \
Line 487  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.432  
changed lines
  Added in v.1.436

CVSweb