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

Diff for /mandoc/Makefile between version 1.429 and 1.436

version 1.429, 2014/08/05 05:27:16 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 121  TESTSRCS  = test-fgetln.c \
Line 122  TESTSRCS  = test-fgetln.c \
                    test-mmap.c \                     test-mmap.c \
                    test-ohash.c \                     test-ohash.c \
                    test-reallocarray.c \                     test-reallocarray.c \
                      test-sqlite3_errstr.c \
                    test-strcasestr.c \                     test-strcasestr.c \
                    test-strlcat.c \                     test-strlcat.c \
                    test-strlcpy.c \                     test-strlcpy.c \
Line 136  SRCS   = apropos.c \
Line 138  SRCS   = apropos.c \
                    compat_getsubopt.c \                     compat_getsubopt.c \
                    compat_ohash.c \                     compat_ohash.c \
                    compat_reallocarray.c \                     compat_reallocarray.c \
                      compat_sqlite3_errstr.c \
                    compat_strcasestr.c \                     compat_strcasestr.c \
                    compat_strlcat.c \                     compat_strlcat.c \
                    compat_strlcpy.c \                     compat_strlcpy.c \
Line 187  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 223  DISTFILES  = LICENSE \
Line 227  DISTFILES  = LICENSE \
                    mandoc.h \                     mandoc.h \
                    mandoc_aux.h \                     mandoc_aux.h \
                    mandoc_char.7 \                     mandoc_char.7 \
                      mandoc_escape.3 \
                    mandoc_html.3 \                     mandoc_html.3 \
                      mandoc_malloc.3 \
                    manpath.h \                     manpath.h \
                    mansearch.3 \                     mansearch.3 \
                    mansearch.h \                     mansearch.h \
                      mchars_alloc.3 \
                    mdoc.7 \                     mdoc.7 \
                    mdoc.h \                     mdoc.h \
                    msec.in \                     msec.in \
Line 278  COMPAT_OBJS  = compat_fgetln.o \
Line 285  COMPAT_OBJS  = compat_fgetln.o \
                    compat_getsubopt.o \                     compat_getsubopt.o \
                    compat_ohash.o \                     compat_ohash.o \
                    compat_reallocarray.o \                     compat_reallocarray.o \
                      compat_sqlite3_errstr.o \
                    compat_strcasestr.o \                     compat_strcasestr.o \
                    compat_strlcat.o \                     compat_strlcat.o \
                    compat_strlcpy.o \                     compat_strlcpy.o \
Line 327  WWW_MANS  = apropos.1.html \
Line 335  WWW_MANS  = apropos.1.html \
                    mandoc.1.html \                     mandoc.1.html \
                    preconv.1.html \                     preconv.1.html \
                    mandoc.3.html \                     mandoc.3.html \
                      mandoc_escape.3.html \
                    mandoc_html.3.html \                     mandoc_html.3.html \
                      mandoc_malloc.3.html \
                    mansearch.3.html \                     mansearch.3.html \
                      mchars_alloc.3.html \
                    tbl.3.html \                     tbl.3.html \
                    mandoc.db.5.html \                     mandoc.db.5.html \
                    eqn.7.html \                     eqn.7.html \
Line 363  install: base-install $(INSTALL_TARGETS)
Line 374  install: base-install $(INSTALL_TARGETS)
   
 www: $(WWW_OBJS) $(WWW_MANS)  www: $(WWW_OBJS) $(WWW_MANS)
   
 .include "Makefile.depend"  include Makefile.depend
   
 # === TARGETS CONTAINING SHELL COMMANDS ================================  # === TARGETS CONTAINING SHELL COMMANDS ================================
   
Line 393  base-install: base-build
Line 404  base-install: base-build
         $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \          $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \
                 $(DESTDIR)$(INCLUDEDIR)                  $(DESTDIR)$(INCLUDEDIR)
         $(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1          $(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1
         $(INSTALL_MAN) mandoc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3          $(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \
                   mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3
         $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \          $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \
                 $(DESTDIR)$(MANDIR)/man7                  $(DESTDIR)$(MANDIR)/man7
         $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)          $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
Line 435  www-install: www
Line 447  www-install: www
         $(INSTALL_DATA) mdocml.sha256 \          $(INSTALL_DATA) mdocml.sha256 \
                 $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).sha256                  $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).sha256
   
 Makefile.depend: $(SRCS) config.h Makefile  depend: config.h
         mkdep -f Makefile.depend $(CFLAGS) $(SRCS)          mkdep -f Makefile.depend $(CFLAGS) $(SRCS)
         perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \          perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \
                 s|\\\n||g; s|  +| |g; print;' Makefile.depend > Makefile.tmp                  s|\\\n||g; s|  +| |g; print;' Makefile.depend > Makefile.tmp
Line 477  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 clean cgi-install db-install install www-install  .PHONY:          base-install cgi-install db-install install www-install
   .PHONY:          clean depend
 .SUFFIXES:       .1       .3       .5       .7       .8       .h  .SUFFIXES:       .1       .3       .5       .7       .8       .h
 .SUFFIXES:       .1.html  .3.html  .5.html  .7.html  .8.html  .h.html  .SUFFIXES:       .1.html  .3.html  .5.html  .7.html  .8.html  .h.html
   

Legend:
Removed from v.1.429  
changed lines
  Added in v.1.436

CVSweb