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

Diff for /mandoc/Makefile between version 1.395.2.29 and 1.396

version 1.395.2.29, 2014/08/14 20:43:22 version 1.396, 2012/06/08 10:47:17
Line 1 
Line 1 
 # $Id$  .PHONY:          clean install installwww
 #  .SUFFIXES:       .sgml .html .md5 .h .h.html
 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>  .SUFFIXES:       .1       .3       .7       .8
 # Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>  .SUFFIXES:       .1.txt   .3.txt   .7.txt   .8.txt
 #  .SUFFIXES:       .1.pdf   .3.pdf   .7.pdf   .8.pdf
 # Permission to use, copy, modify, and distribute this software for any  .SUFFIXES:       .1.ps    .3.ps    .7.ps    .8.ps
 # purpose with or without fee is hereby granted, provided that the above  .SUFFIXES:       .1.html  .3.html  .7.html  .8.html
 # copyright notice and this permission notice appear in all copies.  .SUFFIXES:       .1.xhtml .3.xhtml .7.xhtml .8.xhtml
 #  
 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES  
 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF  
 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR  
 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES  
 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN  
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF  
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.  
   
 VERSION          = 1.12.4  
   
 # === USER SETTINGS ====================================================  
   
 # --- user settings relevant for all builds ----------------------------  
   
 # Specify this if you want to hard-code the operating system to appear  # Specify this if you want to hard-code the operating system to appear
 # in the lower-left hand corner of -mdoc manuals.  # in the lower-left hand corner of -mdoc manuals.
 #  #
 # CFLAGS        += -DOSNAME="\"OpenBSD 5.5\""  # CFLAGS        += -DOSNAME="\"OpenBSD 4.5\""
   
   VERSION          = 1.12.1
   VDATE            = 23 March 2012
   
 # IFF your system supports multi-byte functions (setlocale(), wcwidth(),  # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
 # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a  # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a
 # UCS-4 value) should you define USE_WCHAR.  If you define it and your  # UCS-4 value) should you define USE_WCHAR.  If you define it and your
 # system DOESN'T support this, -Tlocale will produce garbage.  # system DOESN'T support this, -Tlocale will produce garbage.
 # If you don't define it, -Tlocale is a synonym for -Tascii.  # If you don't define it, -Tlocale is a synonym for -Tacsii.
 #  #
 CFLAGS          += -DUSE_WCHAR  CFLAGS          += -DUSE_WCHAR
   
 CFLAGS          += -g -W -Wall -Wstrict-prototypes  # If your system has manpath(1), uncomment this.  This is most any
 CFLAGS          += -Wno-unused-parameter -Wwrite-strings  # system that's not OpenBSD or NetBSD.  If uncommented, manpage(1) and
   # mandocdb(8) will use manpath(1) to get the MANPATH variable.
   #CFLAGS         += -DUSE_MANPATH
   
   # If your system supports static binaries only, uncomment this.  This
   # appears only to be BSD UNIX systems (Mac OS X has no support and Linux
   # requires -pthreads for static libdb).
   STATIC           = -static
   
   CFLAGS          += -I/usr/local/include -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\""
   CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
 PREFIX           = /usr/local  PREFIX           = /usr/local
   WWWPREFIX        = /var/www
   HTDOCDIR         = $(WWWPREFIX)/htdocs
   CGIBINDIR        = $(WWWPREFIX)/cgi-bin
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
 INCLUDEDIR       = $(PREFIX)/include/mandoc  INCLUDEDIR       = $(PREFIX)/include/mandoc
 LIBDIR           = $(PREFIX)/lib/mandoc  LIBDIR           = $(PREFIX)/lib/mandoc
 MANDIR           = $(PREFIX)/man  MANDIR           = $(PREFIX)/man
 EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc  EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc
   
 INSTALL          = install  INSTALL          = install
 INSTALL_PROGRAM  = $(INSTALL) -m 0555  INSTALL_PROGRAM  = $(INSTALL) -m 0755
 INSTALL_DATA     = $(INSTALL) -m 0444  INSTALL_DATA     = $(INSTALL) -m 0444
 INSTALL_LIB      = $(INSTALL) -m 0444  INSTALL_LIB      = $(INSTALL) -m 0644
 INSTALL_SOURCE   = $(INSTALL) -m 0644  INSTALL_SOURCE   = $(INSTALL) -m 0644
 INSTALL_MAN      = $(INSTALL_DATA)  INSTALL_MAN      = $(INSTALL_DATA)
   
 # --- user settings related to database support ------------------------  DBLIB            = -L/usr/local/lib -lsqlite3
   DBBIN            = mandocdb manpage apropos
   
 # If you want to build without database support, for example to avoid  all: mandoc preconv demandoc $(DBBIN)
 # the dependency on Berkeley DB, comment the following line.  
 # However, you won't get apropos(1) and makewhatis(8) in that case.  
 #  
 BUILD_TARGETS   += db-build  
   
 # The remaining settings in this section  SRCS             = Makefile \
 # are only relevant if db-build is enabled.                     TODO \
 # Otherwise, they have no effect either way.  
   
 # Non-BSD systems (Linux, etc.) need -ldb to compile mandocdb and  
 # apropos.  
 #  
 #DBLIB           = -ldb  
   
 # If your system has manpath(1), uncomment this.  This is most any  
 # system that's not OpenBSD or NetBSD.  If uncommented, apropos(1)  
 # and mandocdb(8) will use manpath(1) to get the MANPATH variable.  
 #  
 #CFLAGS         += -DUSE_MANPATH  
   
 # === END OF USER SETTINGS =============================================  
   
 INSTALL_TARGETS  = $(BUILD_TARGETS:-build=-install)  
   
 BASEBIN          = mandoc preconv demandoc  
 DBBIN            = apropos mandocdb  
   
 TESTSRCS         = test-betoh64.c \  
                    test-fgetln.c \  
                    test-getsubopt.c \  
                    test-mmap.c \  
                    test-reallocarray.c \  
                    test-strcasestr.c \  
                    test-strlcat.c \  
                    test-strlcpy.c \  
                    test-strptime.c \  
                    test-strsep.c  
   
 SRCS             = apropos.c \  
                    apropos_db.c \  
                    arch.c \                     arch.c \
                      arch.in \
                    att.c \                     att.c \
                      att.in \
                      cgi.c \
                    chars.c \                     chars.c \
                      chars.in \
                    compat_fgetln.c \                     compat_fgetln.c \
                    compat_getsubopt.c \                     compat_getsubopt.c \
                    compat_reallocarray.c \  
                    compat_strcasestr.c \  
                    compat_strlcat.c \                     compat_strlcat.c \
                    compat_strlcpy.c \                     compat_strlcpy.c \
                    compat_strsep.c \                     config.h.post \
                      config.h.pre \
                      demandoc.1 \
                    demandoc.c \                     demandoc.c \
                      eqn.7 \
                    eqn.c \                     eqn.c \
                    eqn_html.c \                     eqn_html.c \
                    eqn_term.c \                     eqn_term.c \
                      example.style.css \
                      external.png \
                    html.c \                     html.c \
                      html.h \
                      index.css \
                      index.sgml \
                    lib.c \                     lib.c \
                      lib.in \
                      libman.h \
                      libmandoc.h \
                      libmdoc.h \
                      libroff.h \
                    main.c \                     main.c \
                      main.h \
                      man.7 \
                    man.c \                     man.c \
                      man-cgi.css \
                      man.h \
                    man_hash.c \                     man_hash.c \
                    man_html.c \                     man_html.c \
                    man_macro.c \                     man_macro.c \
                    man_term.c \                     man_term.c \
                    man_validate.c \                     man_validate.c \
                      mandoc.1 \
                      mandoc.3 \
                    mandoc.c \                     mandoc.c \
                    mandoc_aux.c \                     mandoc.h \
                      mandoc_char.7 \
                      mandocdb.8 \
                    mandocdb.c \                     mandocdb.c \
                      mandocdb.h \
                    manpath.c \                     manpath.c \
                      manpath.h \
                      mdoc.7 \
                    mdoc.c \                     mdoc.c \
                      mdoc.h \
                    mdoc_argv.c \                     mdoc_argv.c \
                    mdoc_hash.c \                     mdoc_hash.c \
                    mdoc_html.c \                     mdoc_html.c \
Line 129  SRCS   = apropos.c \
Line 121  SRCS   = apropos.c \
                    mdoc_term.c \                     mdoc_term.c \
                    mdoc_validate.c \                     mdoc_validate.c \
                    msec.c \                     msec.c \
                      msec.in \
                    out.c \                     out.c \
                      out.h \
                      preconv.1 \
                    preconv.c \                     preconv.c \
                      predefs.in \
                    read.c \                     read.c \
                      roff.7 \
                    roff.c \                     roff.c \
                    st.c \                     st.c \
                      st.in \
                      style.css \
                      tbl.7 \
                    tbl.c \                     tbl.c \
                    tbl_data.c \                     tbl_data.c \
                    tbl_html.c \                     tbl_html.c \
Line 141  SRCS   = apropos.c \
Line 141  SRCS   = apropos.c \
                    tbl_opts.c \                     tbl_opts.c \
                    tbl_term.c \                     tbl_term.c \
                    term.c \                     term.c \
                      term.h \
                    term_ascii.c \                     term_ascii.c \
                    term_ps.c \                     term_ps.c \
                      test-fgetln.c \
                      test-getsubopt.c \
                      test-mmap.c \
                      test-strlcat.c \
                      test-strlcpy.c \
                      test-strptime.c \
                    tree.c \                     tree.c \
                    vol.c \                     vol.c \
                    $(TESTSRCS)                     vol.in
   
 DISTFILES        = INSTALL \  
                    LICENSE \  
                    Makefile \  
                    Makefile.depend \  
                    NEWS \  
                    TODO \  
                    apropos.1 \  
                    apropos_db.h \  
                    arch.in \  
                    att.in \  
                    chars.in \  
                    config.h.post \  
                    config.h.pre \  
                    configure \  
                    demandoc.1 \  
                    eqn.7 \  
                    example.style.css \  
                    gmdiff \  
                    html.h \  
                    lib.in \  
                    libman.h \  
                    libmandoc.h \  
                    libmdoc.h \  
                    libroff.h \  
                    main.h \  
                    man.7 \  
                    man.h \  
                    mandoc.1 \  
                    mandoc.3 \  
                    mandoc.h \  
                    mandoc_aux.h \  
                    mandoc_char.7 \  
                    mandoc_escape.3 \  
                    mandoc_html.3 \  
                    mandoc_malloc.3 \  
                    mandocdb.8 \  
                    mandocdb.h \  
                    manpath.h \  
                    mchars_alloc.3 \  
                    mdoc.7 \  
                    mdoc.h \  
                    msec.in \  
                    out.h \  
                    preconv.1 \  
                    predefs.in \  
                    roff.7 \  
                    st.in \  
                    style.css \  
                    tbl.3 \  
                    tbl.7 \  
                    term.h \  
                    vol.in \  
                    whatis.1 \  
                    $(SRCS)  
   
 LIBMAN_OBJS      = man.o \  LIBMAN_OBJS      = man.o \
                    man_hash.o \                     man_hash.o \
                    man_macro.o \                     man_macro.o \
Line 230  LIBMANDOC_OBJS  = $(LIBMAN_OBJS) \
Line 182  LIBMANDOC_OBJS  = $(LIBMAN_OBJS) \
                    $(LIBROFF_OBJS) \                     $(LIBROFF_OBJS) \
                    chars.o \                     chars.o \
                    mandoc.o \                     mandoc.o \
                    mandoc_aux.o \  
                    msec.o \                     msec.o \
                    read.o                     read.o
   
 COMPAT_OBJS      = compat_fgetln.o \  COMPAT_OBJS      = compat_fgetln.o \
                    compat_getsubopt.o \                     compat_getsubopt.o \
                    compat_reallocarray.o \  
                    compat_strcasestr.o \  
                    compat_strlcat.o \                     compat_strlcat.o \
                    compat_strlcpy.o \                     compat_strlcpy.o
                    compat_strsep.o  
   
   arch.o: arch.in
   att.o: att.in
   chars.o: chars.in
   lib.o: lib.in
   msec.o: msec.in
   roff.o: predefs.in
   st.o: st.in
   vol.o: vol.in
   
   $(LIBMAN_OBJS): libman.h
   $(LIBMDOC_OBJS): libmdoc.h
   $(LIBROFF_OBJS): libroff.h
   $(LIBMANDOC_OBJS): mandoc.h mdoc.h man.h libmandoc.h config.h
   $(COMPAT_OBJS): config.h
   
 MANDOC_HTML_OBJS = eqn_html.o \  MANDOC_HTML_OBJS = eqn_html.o \
                    html.o \                     html.o \
                    man_html.o \                     man_html.o \
                    mdoc_html.o \                     mdoc_html.o \
                    tbl_html.o                     tbl_html.o
   $(MANDOC_HTML_OBJS): html.h
   
 MANDOC_MAN_OBJS  = mdoc_man.o  MANDOC_MAN_OBJS  = mdoc_man.o
   
Line 257  MANDOC_TERM_OBJS = eqn_term.o \
Line 221  MANDOC_TERM_OBJS = eqn_term.o \
                    term_ascii.o \                     term_ascii.o \
                    term_ps.o \                     term_ps.o \
                    tbl_term.o                     tbl_term.o
   $(MANDOC_TERM_OBJS): term.h
   
 MANDOC_OBJS      = $(MANDOC_HTML_OBJS) \  MANDOC_OBJS      = $(MANDOC_HTML_OBJS) \
                    $(MANDOC_MAN_OBJS) \                     $(MANDOC_MAN_OBJS) \
Line 264  MANDOC_OBJS  = $(MANDOC_HTML_OBJS) \
Line 229  MANDOC_OBJS  = $(MANDOC_HTML_OBJS) \
                    main.o \                     main.o \
                    out.o \                     out.o \
                    tree.o                     tree.o
   $(MANDOC_OBJS): main.h mandoc.h mdoc.h man.h config.h out.h
   
 MANDOCDB_OBJS    = mandocdb.o manpath.o  MANDOCDB_OBJS    = mandocdb.o manpath.o
   $(MANDOCDB_OBJS): mandocdb.h mandoc.h mdoc.h man.h config.h manpath.h
   
 PRECONV_OBJS     = preconv.o  PRECONV_OBJS     = preconv.o
   $(PRECONV_OBJS): config.h
   
 APROPOS_OBJS     = apropos.o apropos_db.o manpath.o  APROPOS_OBJS     = apropos.o mansearch.o manpath.o
   $(APROPOS_OBJS): config.h manpath.h mandocdb.h mansearch.h
   
   MANPAGE_OBJS     = manpage.o mansearch.o manpath.o
   $(MANPAGE_OBJS): config.h manpath.h mandocdb.h mansearch.h
   
 DEMANDOC_OBJS    = demandoc.o  DEMANDOC_OBJS    = demandoc.o
   $(DEMANDOC_OBJS): config.h
   
 WWW_OBJS         = mdocml.tar.gz \  INDEX_MANS       = demandoc.1.html \
                    mdocml.sha256                     demandoc.1.xhtml \
                      demandoc.1.ps \
                      demandoc.1.pdf \
                      demandoc.1.txt \
                      mandoc.1.html \
                      mandoc.1.xhtml \
                      mandoc.1.ps \
                      mandoc.1.pdf \
                      mandoc.1.txt \
                      mandoc.3.html \
                      mandoc.3.xhtml \
                      mandoc.3.ps \
                      mandoc.3.pdf \
                      mandoc.3.txt \
                      eqn.7.html \
                      eqn.7.xhtml \
                      eqn.7.ps \
                      eqn.7.pdf \
                      eqn.7.txt \
                      man.7.html \
                      man.7.xhtml \
                      man.7.ps \
                      man.7.pdf \
                      man.7.txt \
                      mandoc_char.7.html \
                      mandoc_char.7.xhtml \
                      mandoc_char.7.ps \
                      mandoc_char.7.pdf \
                      mandoc_char.7.txt \
                      mdoc.7.html \
                      mdoc.7.xhtml \
                      mdoc.7.ps \
                      mdoc.7.pdf \
                      mdoc.7.txt \
                      preconv.1.html \
                      preconv.1.xhtml \
                      preconv.1.ps \
                      preconv.1.pdf \
                      preconv.1.txt \
                      roff.7.html \
                      roff.7.xhtml \
                      roff.7.ps \
                      roff.7.pdf \
                      roff.7.txt \
                      tbl.7.html \
                      tbl.7.xhtml \
                      tbl.7.ps \
                      tbl.7.pdf \
                      tbl.7.txt \
                      mandocdb.8.html \
                      mandocdb.8.xhtml \
                      mandocdb.8.ps \
                      mandocdb.8.pdf \
                      mandocdb.8.txt
   
 # === DEPENDENCY HANDLING ==============================================  $(INDEX_MANS): mandoc
   
 all: base-build $(BUILD_TARGETS)  INDEX_OBJS       = $(INDEX_MANS) \
                      man.h.html \
                      mandoc.h.html \
                      mdoc.h.html \
                      mdocml.tar.gz \
                      mdocml.md5
   
 base-build: $(BASEBIN)  www: index.html
   
 db-build: $(DBBIN)  
   
 install: base-install $(INSTALL_TARGETS)  
   
 www: $(WWW_OBJS)  
   
 include Makefile.depend  
   
 # === TARGETS CONTAINING SHELL COMMANDS ================================  
   
 clean:  clean:
         rm -f libmandoc.a $(LIBMANDOC_OBJS)          rm -f libmandoc.a $(LIBMANDOC_OBJS)
         rm -f apropos $(APROPOS_OBJS)          rm -f apropos $(APROPOS_OBJS)
         rm -f mandocdb $(MANDOCDB_OBJS)          rm -f mandocdb $(MANDOCDB_OBJS)
         rm -f preconv $(PRECONV_OBJS)          rm -f preconv $(PRECONV_OBJS)
           rm -f manpage $(MANPAGE_OBJS)
         rm -f demandoc $(DEMANDOC_OBJS)          rm -f demandoc $(DEMANDOC_OBJS)
         rm -f mandoc $(MANDOC_OBJS)          rm -f mandoc $(MANDOC_OBJS)
         rm -f config.h config.log $(COMPAT_OBJS)          rm -f config.h config.log $(COMPAT_OBJS)
         rm -f $(WWW_OBJS)          rm -f mdocml.tar.gz
           rm -f index.html $(INDEX_OBJS)
         rm -rf *.dSYM          rm -rf *.dSYM
   
 base-install: base-build  install: all
         mkdir -p $(DESTDIR)$(BINDIR)          mkdir -p $(DESTDIR)$(BINDIR)
         mkdir -p $(DESTDIR)$(EXAMPLEDIR)          mkdir -p $(DESTDIR)$(EXAMPLEDIR)
         mkdir -p $(DESTDIR)$(LIBDIR)          mkdir -p $(DESTDIR)$(LIBDIR)
Line 311  base-install: base-build
Line 334  base-install: base-build
         mkdir -p $(DESTDIR)$(MANDIR)/man1          mkdir -p $(DESTDIR)$(MANDIR)/man1
         mkdir -p $(DESTDIR)$(MANDIR)/man3          mkdir -p $(DESTDIR)$(MANDIR)/man3
         mkdir -p $(DESTDIR)$(MANDIR)/man7          mkdir -p $(DESTDIR)$(MANDIR)/man7
         $(INSTALL_PROGRAM) $(BASEBIN) $(DESTDIR)$(BINDIR)          $(INSTALL_PROGRAM) mandoc preconv demandoc $(DESTDIR)$(BINDIR)
         $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)          $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
         $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \          $(INSTALL_LIB) man.h mdoc.h mandoc.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 mandoc_escape.3 mandoc_malloc.3 \          $(INSTALL_MAN) mandoc.3 $(DESTDIR)$(MANDIR)/man3
                 mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3          $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 $(DESTDIR)$(MANDIR)/man7
         $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \  
                 $(DESTDIR)$(MANDIR)/man7  
         $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)          $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
   
 db-install: db-build  installcgi: all
         mkdir -p $(DESTDIR)$(BINDIR)          mkdir -p $(DESTDIR)$(CGIBINDIR)
         mkdir -p $(DESTDIR)$(MANDIR)/man1          mkdir -p $(DESTDIR)$(HTDOCDIR)
         mkdir -p $(DESTDIR)$(MANDIR)/man8          #$(INSTALL_PROGRAM) man.cgi $(DESTDIR)$(CGIBINDIR)
         $(INSTALL_PROGRAM) $(DBBIN) $(DESTDIR)$(BINDIR)          $(INSTALL_DATA) example.style.css $(DESTDIR)$(HTDOCDIR)/man.css
         ln -f $(DESTDIR)$(BINDIR)/apropos $(DESTDIR)$(BINDIR)/whatis          $(INSTALL_DATA) man-cgi.css $(DESTDIR)$(HTDOCDIR)
         $(INSTALL_MAN) apropos.1 whatis.1 $(DESTDIR)$(MANDIR)/man1  
         $(INSTALL_MAN) mandocdb.8 $(DESTDIR)$(MANDIR)/man8  
   
 depend: config.h  installwww: www
         mkdep -f Makefile.depend $(CFLAGS) $(SRCS)          mkdir -p $(PREFIX)/snapshots
         perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \          mkdir -p $(PREFIX)/binaries
                 s|\\\n||g; s|  +| |g; print;' Makefile.depend > Makefile.tmp          $(INSTALL_DATA) index.html external.png index.css $(PREFIX)
         mv Makefile.tmp Makefile.depend          $(INSTALL_DATA) $(INDEX_MANS) style.css $(PREFIX)
           $(INSTALL_DATA) mandoc.h.html man.h.html mdoc.h.html $(PREFIX)
           $(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots
           $(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots
           $(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots/mdocml-$(VERSION).tar.gz
           $(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots/mdocml-$(VERSION).md5
   
 libmandoc.a: $(COMPAT_OBJS) $(LIBMANDOC_OBJS)  libmandoc.a: $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
         $(AR) rs $@ $(COMPAT_OBJS) $(LIBMANDOC_OBJS)          $(AR) rs $@ $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
Line 349  mandocdb: $(MANDOCDB_OBJS) libmandoc.a
Line 372  mandocdb: $(MANDOCDB_OBJS) libmandoc.a
 preconv: $(PRECONV_OBJS)  preconv: $(PRECONV_OBJS)
         $(CC) $(LDFLAGS) -o $@ $(PRECONV_OBJS)          $(CC) $(LDFLAGS) -o $@ $(PRECONV_OBJS)
   
   manpage: $(MANPAGE_OBJS) libmandoc.a
           $(CC) $(LDFLAGS) -o $@ $(MANPAGE_OBJS) libmandoc.a $(DBLIB)
   
 apropos: $(APROPOS_OBJS) libmandoc.a  apropos: $(APROPOS_OBJS) libmandoc.a
         $(CC) $(LDFLAGS) -o $@ $(APROPOS_OBJS) libmandoc.a $(DBLIB)          $(CC) $(LDFLAGS) -o $@ $(APROPOS_OBJS) libmandoc.a $(DBLIB)
   
 demandoc: $(DEMANDOC_OBJS) libmandoc.a  demandoc: $(DEMANDOC_OBJS) libmandoc.a
         $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a          $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a
   
 mdocml.sha256: mdocml.tar.gz  mdocml.md5: mdocml.tar.gz
         sha256 mdocml.tar.gz > $@          md5 mdocml.tar.gz >$@
   
 mdocml.tar.gz: $(DISTFILES)  mdocml.tar.gz: $(SRCS)
         mkdir -p .dist/mdocml-$(VERSION)/          mkdir -p .dist/mdocml-$(VERSION)/
         $(INSTALL_SOURCE) $(DISTFILES) .dist/mdocml-$(VERSION)          $(INSTALL_SOURCE) $(SRCS) .dist/mdocml-$(VERSION)
         chmod 755 .dist/mdocml-$(VERSION)/configure          ( cd .dist/ && tar zcf ../$@ ./ )
         ( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) )  
         rm -rf .dist/          rm -rf .dist/
   
 config.h: configure config.h.pre config.h.post $(TESTSRCS)  index.html: $(INDEX_OBJS)
   
   config.h: config.h.pre config.h.post
         rm -f config.log          rm -f config.log
         CC="$(CC)" CFLAGS="$(CFLAGS)" VERSION="$(VERSION)" ./configure          ( cat config.h.pre; \
             echo; \
             if $(CC) $(CFLAGS) -Werror -o test-fgetln test-fgetln.c >> config.log 2>&1; then \
                   echo '#define HAVE_FGETLN'; \
                   rm test-fgetln; \
             fi; \
             if $(CC) $(CFLAGS) -Werror -o test-strptime test-strptime.c >> config.log 2>&1; then \
                   echo '#define HAVE_STRPTIME'; \
                   rm test-strptime; \
             fi; \
             if $(CC) $(CFLAGS) -Werror -o test-getsubopt test-getsubopt.c >> config.log 2>&1; then \
                   echo '#define HAVE_GETSUBOPT'; \
                   rm test-getsubopt; \
             fi; \
             if $(CC) $(CFLAGS) -Werror -o test-strlcat test-strlcat.c >> config.log 2>&1; then \
                   echo '#define HAVE_STRLCAT'; \
                   rm test-strlcat; \
             fi; \
             if $(CC) $(CFLAGS) -Werror -o test-mmap test-mmap.c >> config.log 2>&1; then \
                   echo '#define HAVE_MMAP'; \
                   rm test-mmap; \
             fi; \
             if $(CC) $(CFLAGS) -Werror -o test-strlcpy test-strlcpy.c >> config.log 2>&1; then \
                   echo '#define HAVE_STRLCPY'; \
                   rm test-strlcpy; \
             fi; \
             echo; \
             cat config.h.post \
           ) > $@
   
 .PHONY:          base-install db-install install  .h.h.html:
 .PHONY:          clean depend          highlight -I $< >$@
   
   .1.1.txt .3.3.txt .7.7.txt .8.8.txt:
           ./mandoc -Tascii -Wall,stop $< | col -b >$@
   
   .1.1.html .3.3.html .7.7.html .8.8.html:
           ./mandoc -Thtml -Wall,stop -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< >$@
   
   .1.1.ps .3.3.ps .7.7.ps .8.8.ps:
           ./mandoc -Tps -Wall,stop $< >$@
   
   .1.1.xhtml .3.3.xhtml .7.7.xhtml .8.8.xhtml:
           ./mandoc -Txhtml -Wall,stop -Ostyle=style.css,man=%N.%S.xhtml,includes=%I.html $< >$@
   
   .1.1.pdf .3.3.pdf .7.7.pdf .8.8.pdf:
           ./mandoc -Tpdf -Wall,stop $< >$@
   
   .sgml.html:
           validate --warn $<
           sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< >$@

Legend:
Removed from v.1.395.2.29  
changed lines
  Added in v.1.396

CVSweb