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

Diff for /mandoc/Makefile between version 1.78 and 1.395.2.27

version 1.78, 2009/02/23 13:05:06 version 1.395.2.27, 2014/08/11 00:31:13
Line 1 
Line 1 
 VERSION = 1.3.0  # $Id$
   #
   # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
   # Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
   #
   # Permission to use, copy, modify, and distribute this software for any
   # purpose with or without fee is hereby granted, provided that the above
   # copyright notice and this permission notice appear in all copies.
   #
   # 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.
   
 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  VERSION          = 1.12.4
   
 LIBLNS  = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \  # === USER SETTINGS ====================================================
           validate.ln action.ln  
   
 TREELNS = mdoctree.ln mmain.ln  # --- user settings relevant for all builds ----------------------------
   
 TERMLNS = mdoctree.ln mmain.ln term.ln  # Specify this if you want to hard-code the operating system to appear
   # in the lower-left hand corner of -mdoc manuals.
   #
   # CFLAGS        += -DOSNAME="\"OpenBSD 5.5\""
   
 LINTLNS = mdoclint.ln mmain.ln  # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
   # 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
   # system DOESN'T support this, -Tlocale will produce garbage.
   # If you don't define it, -Tlocale is a synonym for -Tacsii.
   #
   CFLAGS          += -DUSE_WCHAR
   
 LNS     = $(LIBLNS) $(TREELNS) $(TERMLNS)  CFLAGS          += -g -W -Wall -Wstrict-prototypes
   CFLAGS          += -Wno-unused-parameter -Wwrite-strings
   PREFIX           = /usr/local
   BINDIR           = $(PREFIX)/bin
   INCLUDEDIR       = $(PREFIX)/include/mandoc
   LIBDIR           = $(PREFIX)/lib/mandoc
   MANDIR           = $(PREFIX)/man
   EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc
   
 LLNS    = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln  INSTALL          = install
   INSTALL_PROGRAM  = $(INSTALL) -m 0555
   INSTALL_DATA     = $(INSTALL) -m 0444
   INSTALL_LIB      = $(INSTALL) -m 0444
   INSTALL_SOURCE   = $(INSTALL) -m 0644
   INSTALL_MAN      = $(INSTALL_DATA)
   
 LIBS    = libmdoc.a  # --- user settings related to database support ------------------------
   
 LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \  # If you want to build without database support, for example to avoid
           validate.o action.o  # 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
   
 TERMOBJS= mdocterm.o mmain.o term.o  # The remaining settings in this section
   # are only relevant if db-build is enabled.
   # Otherwise, they have no effect either way.
   
 TREEOBJS= mdoctree.o mmain.o  # Non-BSD systems (Linux, etc.) need -ldb to compile mandocdb and
   # apropos.
   #
   #DBLIB           = -ldb
   
 LINTOBJS= mdoclint.o mmain.o  # 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
   
 OBJS    = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS)  WWWPREFIX        = /var/www
   HTDOCDIR         = $(WWWPREFIX)/htdocs
   
 SRCS    = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \  # === END OF USER SETTINGS =============================================
           action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c  
   
 HEADS   = mdoc.h private.h term.h mmain.h  INSTALL_TARGETS  = $(BUILD_TARGETS:-build=-install)
   
 MANS    = mdoctree.1 mdocterm.1 mdoc.3  BASEBIN          = mandoc preconv demandoc
   DBBIN            = apropos mandocdb
   
 BINS    = mdocterm mdoctree mdoclint  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
   
 CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)  SRCS             = apropos.c \
                      apropos_db.c \
                      arch.c \
                      att.c \
                      chars.c \
                      compat_fgetln.c \
                      compat_getsubopt.c \
                      compat_reallocarray.c \
                      compat_strcasestr.c \
                      compat_strlcat.c \
                      compat_strlcpy.c \
                      compat_strsep.c \
                      demandoc.c \
                      eqn.c \
                      eqn_html.c \
                      eqn_term.c \
                      html.c \
                      lib.c \
                      main.c \
                      man.c \
                      man_hash.c \
                      man_html.c \
                      man_macro.c \
                      man_term.c \
                      man_validate.c \
                      mandoc.c \
                      mandoc_aux.c \
                      mandocdb.c \
                      manpath.c \
                      mdoc.c \
                      mdoc_argv.c \
                      mdoc_hash.c \
                      mdoc_html.c \
                      mdoc_macro.c \
                      mdoc_man.c \
                      mdoc_term.c \
                      mdoc_validate.c \
                      msec.c \
                      out.c \
                      preconv.c \
                      read.c \
                      roff.c \
                      st.c \
                      tbl.c \
                      tbl_data.c \
                      tbl_html.c \
                      tbl_layout.c \
                      tbl_opts.c \
                      tbl_term.c \
                      term.c \
                      term_ascii.c \
                      term_ps.c \
                      tree.c \
                      vol.c \
                      $(TESTSRCS)
   
 INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS)  DISTFILES        = 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)
   
 FAIL    = regress/test.empty \  LIBMAN_OBJS      = man.o \
           regress/test.prologue.00 \                     man_hash.o \
           regress/test.prologue.01 \                     man_macro.o \
           regress/test.prologue.02 \                     man_validate.o
           regress/test.prologue.03 \  
           regress/test.prologue.04 \  
           regress/test.prologue.06 \  
           regress/test.prologue.13 \  
           regress/test.prologue.15 \  
           regress/test.prologue.16 \  
           regress/test.prologue.18 \  
           regress/test.prologue.19 \  
           regress/test.prologue.21 \  
           regress/test.prologue.22 \  
           regress/test.prologue.23 \  
           regress/test.prologue.24 \  
           regress/test.prologue.25 \  
           regress/test.prologue.26 \  
           regress/test.prologue.27 \  
           regress/test.prologue.28 \  
           regress/test.prologue.29 \  
           regress/test.prologue.30 \  
           regress/test.prologue.31 \  
           regress/test.prologue.32 \  
           regress/test.prologue.33 \  
           regress/test.sh.01 \  
           regress/test.sh.02 \  
           regress/test.sh.03  
   
 SUCCEED = regress/test.prologue.05 \  LIBMDOC_OBJS     = arch.o \
           regress/test.prologue.07 \                     att.o \
           regress/test.prologue.08 \                     lib.o \
           regress/test.prologue.09 \                     mdoc.o \
           regress/test.prologue.10 \                     mdoc_argv.o \
           regress/test.prologue.11 \                     mdoc_hash.o \
           regress/test.prologue.12 \                     mdoc_macro.o \
           regress/test.prologue.14 \                     mdoc_validate.o \
           regress/test.prologue.17 \                     st.o \
           regress/test.prologue.20 \                     vol.o
           regress/test.sh.00 \  
           regress/test.name.00 \  
           regress/test.name.01 \  
           regress/test.name.02 \  
           regress/test.name.03 \  
           regress/test.list.00 \  
           regress/test.list.01 \  
           regress/test.list.02 \  
           regress/test.list.03 \  
           regress/test.list.04 \  
           regress/test.list.05 \  
           regress/test.list.06  
   
 all:    $(BINS)  LIBROFF_OBJS     = eqn.o \
                      roff.o \
                      tbl.o \
                      tbl_data.o \
                      tbl_layout.o \
                      tbl_opts.o
   
 lint:   $(LLNS)  LIBMANDOC_OBJS   = $(LIBMAN_OBJS) \
                      $(LIBMDOC_OBJS) \
                      $(LIBROFF_OBJS) \
                      chars.o \
                      mandoc.o \
                      mandoc_aux.o \
                      msec.o \
                      read.o
   
 clean:  COMPAT_OBJS      = compat_fgetln.o \
         rm -f $(CLEAN)                     compat_getsubopt.o \
                      compat_reallocarray.o \
                      compat_strcasestr.o \
                      compat_strlcat.o \
                      compat_strlcpy.o \
                      compat_strsep.o
   
 dist:   mdocml-$(VERSION).tar.gz  MANDOC_HTML_OBJS = eqn_html.o \
                      html.o \
                      man_html.o \
                      mdoc_html.o \
                      tbl_html.o
   
 port:   mdocml-oport-$(VERSION).tar.gz  MANDOC_MAN_OBJS  = mdoc_man.o
   
 regress:: mdoclint  MANDOC_TERM_OBJS = eqn_term.o \
         @for f in $(FAIL); do \                     man_term.o \
                 echo "./mdoclint $$f" ; \                     mdoc_term.o \
                 ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done                     term.o \
         @for f in $(SUCCEED); do \                     term_ascii.o \
                 echo "./mdoclint $$f" ; \                     term_ps.o \
                 ./mdoclint $$f 2>/dev/null || exit 1 ; done                     tbl_term.o
   
 install:  MANDOC_OBJS      = $(MANDOC_HTML_OBJS) \
         mkdir -p $(PREFIX)/bin/                     $(MANDOC_MAN_OBJS) \
         mkdir -p $(PREFIX)/include/mdoc/                     $(MANDOC_TERM_OBJS) \
         mkdir -p $(PREFIX)/lib/                     main.o \
         mkdir -p $(PREFIX)/man/man1/                     out.o \
         install -m 0755 mdocterm $(PREFIX)/bin/                     tree.o
         install -m 0755 mdoctree $(PREFIX)/bin/  
         install -m 0444 mdocterm.1 $(PREFIX)/man/man1/  
         install -m 0444 mdocterm.1 $(PREFIX)/man/man1/  
         install -m 0444 mdoc.3 $(PREFIX)/man/man3/  
         install -m 0644 libmdoc.a $(PREFIX)/lib/  
         install -m 0444 mdoc.h $(PREFIX)/include/  
   
 install-dist: mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz  MANDOCDB_OBJS    = mandocdb.o manpath.o
         install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/  
         install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/mdocml.tar.gz  
         install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/  
         install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/mdocml-oport.tar.gz  
   
 uninstall:  PRECONV_OBJS     = preconv.o
         rm -f $(PREFIX)/bin/mdocterm  
         rm -f $(PREFIX)/bin/mdoctree  
         rm -f $(PREFIX)/man/man1/mdocterm.1  
         rm -f $(PREFIX)/man/man1/mdoctree.1  
         rm -f $(PREFIX)/man/man3/mdoc.3  
         rm -f $(PREFIX)/lib/libmdoc.a  
         rm -f $(PREFIX)/include/mdoc.h  
   
 macro.ln: macro.c private.h  APROPOS_OBJS     = apropos.o apropos_db.o manpath.o
 macro.o: macro.c private.h  
   
 term.ln: term.c term.h  DEMANDOC_OBJS    = demandoc.o
 term.o: term.c term.h  
   
 strings.ln: strings.c private.h  WWW_MANS         = apropos.1.html \
 strings.o: strings.c private.h                     demandoc.1.html \
                      mandoc.1.html \
                      preconv.1.html \
                      whatis.1.html \
                      mandoc.3.html \
                      mandoc_escape.3.html \
                      mandoc_html.3.html \
                      mandoc_malloc.3.html \
                      mchars_alloc.3.html \
                      tbl.3.html \
                      eqn.7.html \
                      man.7.html \
                      mandoc_char.7.html \
                      mdoc.7.html \
                      roff.7.html \
                      tbl.7.html \
                      mandocdb.8.html \
                      man.h.html \
                      mandoc.h.html \
                      mandoc_aux.h.html \
                      manpath.h.html \
                      mdoc.h.html
   
 hash.ln: hash.c private.h  WWW_OBJS         = mdocml.tar.gz \
 hash.o: hash.c private.h                     mdocml.sha256
   
 mdoc.ln: mdoc.c private.h  # === DEPENDENCY HANDLING ==============================================
 mdoc.o: mdoc.c private.h  
   
 mdocterm.ln: mdocterm.c mmain.h  all: base-build $(BUILD_TARGETS)
 mdocterm.o: mdocterm.c mmain.h  
   
 mdoclint.ln: mdoclint.c mmain.h  base-build: $(BASEBIN)
 mdoclint.o: mdoclint.c mmain.h  
   
 mdoctree.ln: mdoctree.c mmain.h  db-build: $(DBBIN)
 mdoctree.o: mdoctree.c mmain.h  
   
 xstd.ln: xstd.c private.h  install: base-install $(INSTALL_TARGETS)
 xstd.o: xstd.c private.h  
   
 argv.ln: argv.c private.h  www: $(WWW_OBJS) $(WWW_MANS)
 argv.o: argv.c private.h  
   
 validate.ln: validate.c private.h  include Makefile.depend
 validate.o: validate.c private.h  
   
 action.ln: action.c private.h  # === TARGETS CONTAINING SHELL COMMANDS ================================
 action.o: action.c private.h  
   
 mmain.ln: mmain.c mmain.h  clean:
 mmain.o: mmain.c mmain.h          rm -f libmandoc.a $(LIBMANDOC_OBJS)
           rm -f apropos $(APROPOS_OBJS)
           rm -f mandocdb $(MANDOCDB_OBJS)
           rm -f preconv $(PRECONV_OBJS)
           rm -f demandoc $(DEMANDOC_OBJS)
           rm -f mandoc $(MANDOC_OBJS)
           rm -f config.h config.log $(COMPAT_OBJS)
           rm -f $(WWW_MANS) $(WWW_OBJS)
           rm -rf *.dSYM
   
 private.h: mdoc.h  base-install: base-build
           mkdir -p $(DESTDIR)$(BINDIR)
           mkdir -p $(DESTDIR)$(EXAMPLEDIR)
           mkdir -p $(DESTDIR)$(LIBDIR)
           mkdir -p $(DESTDIR)$(INCLUDEDIR)
           mkdir -p $(DESTDIR)$(MANDIR)/man1
           mkdir -p $(DESTDIR)$(MANDIR)/man3
           mkdir -p $(DESTDIR)$(MANDIR)/man7
           $(INSTALL_PROGRAM) $(BASEBIN) $(DESTDIR)$(BINDIR)
           $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
           $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \
                   $(DESTDIR)$(INCLUDEDIR)
           $(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1
           $(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 \
                   $(DESTDIR)$(MANDIR)/man7
           $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
   
 mmain.h: mdoc.h  db-install: db-build
           mkdir -p $(DESTDIR)$(BINDIR)
           mkdir -p $(DESTDIR)$(MANDIR)/man1
           mkdir -p $(DESTDIR)$(MANDIR)/man8
           $(INSTALL_PROGRAM) $(DBBIN) $(DESTDIR)$(BINDIR)
           ln -f $(DESTDIR)$(BINDIR)/apropos $(DESTDIR)$(BINDIR)/whatis
           $(INSTALL_MAN) apropos.1 whatis.1 $(DESTDIR)$(MANDIR)/man1
           $(INSTALL_MAN) mandocdb.8 $(DESTDIR)$(MANDIR)/man8
   
 term.h: mdoc.h  www-install: www
           mkdir -p $(DESTDIR)$(HTDOCDIR)/snapshots
           $(INSTALL_DATA) $(WWW_MANS) style.css $(DESTDIR)$(HTDOCDIR)
           $(INSTALL_DATA) $(WWW_OBJS) $(DESTDIR)$(HTDOCDIR)/snapshots
           $(INSTALL_DATA) mdocml.tar.gz \
                   $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).tar.gz
           $(INSTALL_DATA) mdocml.sha256 \
                   $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).sha256
   
 mdocml-oport-$(VERSION).tar.gz: Makefile.port DESCR  depend: config.h
         mkdir -p .dist/mdocml/pkg          mkdep -f Makefile.depend $(CFLAGS) $(SRCS)
         sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > .dist/mdocml/Makefile          perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \
         md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo                  s|\\\n||g; s|  +| |g; print;' Makefile.depend > Makefile.tmp
         rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo          mv Makefile.tmp Makefile.depend
         sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo  
         install -m 0644 DESCR .dist/mdocml/pkg/DESCR  
         echo @comment $$OpenBSD$$ > .dist/mdocml/pkg/PLIST  
         echo bin/mdocterm >> .dist/mdocml/pkg/PLIST  
         echo bin/mdoctree >> .dist/mdocml/pkg/PLIST  
         echo bin/mdoclint >> .dist/mdocml/pkg/PLIST  
         echo lib/libmdoc.a >> .dist/mdocml/pkg/PLIST  
         echo include/mdoc.h >> .dist/mdocml/pkg/PLIST  
         echo @man man/man1/mdoctree.1 >> .dist/mdocml/pkg/PLIST  
         echo @man man/man1/mdocterm.1 >> .dist/mdocml/pkg/PLIST  
         echo @man man/man1/mdoclint.1 >> .dist/mdocml/pkg/PLIST  
         echo @man man/man3/mdoc.3 >> .dist/mdocml/pkg/PLIST  
         ( cd .dist/ && tar zcf ../$@ mdocml/ )  
         rm -rf .dist/  
   
 mdocml-$(VERSION).tar.gz: $(INSTALL)  libmandoc.a: $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
         mkdir -p .dist/mdocml/mdocml-$(VERSION)/          $(AR) rs $@ $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
         install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/  
         ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )  
         rm -rf .dist/  
   
 llib-llibmdoc.ln: $(LIBLNS)  mandoc: $(MANDOC_OBJS) libmandoc.a
         $(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS)          $(CC) $(LDFLAGS) -o $@ $(MANDOC_OBJS) libmandoc.a
   
 llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln  mandocdb: $(MANDOCDB_OBJS) libmandoc.a
         $(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln          $(CC) $(LDFLAGS) -o $@ $(MANDOCDB_OBJS) libmandoc.a $(DBLIB)
   
 llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln  preconv: $(PRECONV_OBJS)
         $(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln          $(CC) $(LDFLAGS) -o $@ $(PRECONV_OBJS)
   
 libmdoc.a: $(LIBOBJS)  apropos: $(APROPOS_OBJS) libmandoc.a
         $(AR) rs $@ $(LIBOBJS)          $(CC) $(LDFLAGS) -o $@ $(APROPOS_OBJS) libmandoc.a $(DBLIB)
   
 mdocterm: $(TERMOBJS) libmdoc.a  demandoc: $(DEMANDOC_OBJS) libmandoc.a
         $(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a          $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a
   
 mdoctree: $(TREEOBJS) libmdoc.a  mdocml.sha256: mdocml.tar.gz
         $(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a          sha256 mdocml.tar.gz > $@
   
 mdoclint: $(LINTOBJS) libmdoc.a  mdocml.tar.gz: $(DISTFILES)
         $(CC) $(CFLAGS) -o $@ $(LINTOBJS) libmdoc.a          mkdir -p .dist/mdocml-$(VERSION)/
           $(INSTALL_SOURCE) $(DISTFILES) .dist/mdocml-$(VERSION)
           chmod 755 .dist/mdocml-$(VERSION)/configure
           ( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) )
           rm -rf .dist/
   
   config.h: configure config.h.pre config.h.post $(TESTSRCS)
           rm -f config.log
           CC="$(CC)" CFLAGS="$(CFLAGS)" VERSION="$(VERSION)" ./configure
   
   .PHONY:          base-install db-install install www-install
   .PHONY:          clean depend
   .SUFFIXES:       .1       .3       .5       .7       .8       .h
   .SUFFIXES:       .1.html  .3.html  .5.html  .7.html  .8.html  .h.html
   
   .h.h.html:
           highlight -I $< > $@
   
   .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc
           ./mandoc -Thtml -Wall,stop \
                   -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.395.2.27

CVSweb