]> git.cameronkatri.com Git - mandoc.git/blobdiff - Makefile
Added "Input Encoding" section to mdoc*.1.
[mandoc.git] / Makefile
index b035ff17b9030b9310cd9b4dd3d08a6e4b3f15c4..ccd831df0ace7ac401d5d423dcdc87471ce5ca85 100644 (file)
--- a/Makefile
+++ b/Makefile
-.SUFFIXES:     .html .7
+.SUFFIXES:     .html .sgml
 
-VERSION        = 1.0.1
+VERSION        = 1.4.4
+VDATE  = 9 March 2009
 
-# FIXME
-CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG
+BINDIR         = $(PREFIX)/bin
+INCLUDEDIR     = $(PREFIX)/include
+LIBDIR         = $(PREFIX)/lib
+MANDIR         = $(PREFIX)/man
 
-LINTFLAGS += -c -e -f -u
+INSTALL_PROGRAM        = install -m 0755
+INSTALL_DATA   = install -m 0444
+INSTALL_LIB    = install -m 0644
+INSTALL_MAN    = $(INSTALL_DATA)
 
-LNS    = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \
-         compat.ln tokens.ln literals.ln
+CPPFLAGS = -DVERSION=\"$(VERSION)\"
+CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g 
 
-LLNS   = llib-lmdocml.ln
+LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \
+         validate.ln action.ln lib.ln att.ln arch.ln vol.ln \
+         msec.ln st.ln
 
-LIBS   = libmdocml.a
+TREELNS        = mdoctree.ln mmain.ln 
 
-OBJS   = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \
-         compat.o tokens.o literals.o
+TERMLNS        = mdoctree.ln mmain.ln term.ln
 
-SRCS   = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \
-         compat.c tokens.c literals.c
+LINTLNS        = mdoclint.ln mmain.ln
+
+LNS    = $(LIBLNS) $(TREELNS) $(TERMLNS)
+
+LLNS   = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln
+
+LIBS   = libmdoc.a
+
+LIBOBJS        = macro.o mdoc.o hash.o strings.o xstd.o argv.o \
+         validate.o action.o lib.o att.o arch.o vol.o msec.o \
+         st.o
+
+TERMOBJS= mdocterm.o mmain.o term.o
+
+TREEOBJS= mdoctree.o mmain.o
+
+LINTOBJS= mdoclint.o mmain.o
+
+OBJS   = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) $(LINTOBJS)
+
+SRCS   = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \
+         action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c
+
+SCRIPTS = strings.sh
+
+DATAS  = arch.in att.in lib.in msec.in st.in vol.in
+
+GEN    = lib.c att.c arch.c vol.c msec.c st.c
+
+HEADS  = mdoc.h private.h term.h mmain.h
+
+SGMLS  = index.sgml
+
+HTMLS  = index.html
+
+STATICS        = style.css external.png
+
+TARGZS = mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz \
+         mdocml-nport-$(VERSION).tar.gz
+
+MANS   = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3
+
+BINS   = mdocterm mdoctree mdoclint
+
+CLEAN  = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
+         $(TARGZS) $(GEN)
+
+INSTALL        = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \
+         $(STATICS) $(SCRIPTS) Makefile.netbsd Makefile.openbsd \
+         $(DATAS)
+
+FAIL   = regress/test.empty \
+         regress/test.prologue.00 \
+         regress/test.prologue.01 \
+         regress/test.prologue.02 \
+         regress/test.prologue.03 \
+         regress/test.prologue.04 \
+         regress/test.prologue.06 \
+         regress/test.prologue.19 \
+         regress/test.prologue.23 \
+         regress/test.prologue.24 \
+         regress/test.prologue.27 \
+         regress/test.prologue.28 \
+         regress/test.prologue.30 \
+         regress/test.prologue.31 \
+         regress/test.prologue.32 \
+         regress/test.sh.03 \
+         regress/test.escape.01 \
+         regress/test.escape.02 \
+         regress/test.escape.03 \
+         regress/test.escape.04 \
+         regress/test.escape.06 \
+         regress/test.escape.07 \
+         regress/test.escape.08 \
+         regress/test.escape.09 \
+         regress/test.escape.11 \
+         regress/test.escape.12 \
+         regress/test.escape.14 \
+         regress/test.argv.01 \
+         regress/test.argv.02
+
+SUCCEED        = regress/test.prologue.05 \
+         regress/test.prologue.07 \
+         regress/test.prologue.08 \
+         regress/test.prologue.09 \
+         regress/test.prologue.10 \
+         regress/test.prologue.11 \
+         regress/test.prologue.12 \
+         regress/test.prologue.13 \
+         regress/test.prologue.14 \
+         regress/test.prologue.15 \
+         regress/test.prologue.16 \
+         regress/test.prologue.17 \
+         regress/test.prologue.18 \
+         regress/test.prologue.20 \
+         regress/test.prologue.21 \
+         regress/test.prologue.22 \
+         regress/test.prologue.25 \
+         regress/test.prologue.26 \
+         regress/test.prologue.29 \
+         regress/test.prologue.33 \
+         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 \
+         regress/test.list.07 \
+         regress/test.sh.01 \
+         regress/test.sh.02 \
+         regress/test.escape.00 \
+         regress/test.escape.05 \
+         regress/test.escape.10 \
+         regress/test.escape.13 \
+         regress/test.argv.00
+
+REGRESS        = $(FAIL) $(SUCCEED)
+
+all:   $(BINS)
+
+lint:  $(LLNS)
 
-HEADS  = libmdocml.h private.h ml.h roff.h
-
-MANS   = mdocml.1 index.7
-
-HTML   = index.html mdocml.html 
-
-XML    = index.xml
-
-CLEAN  = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \
-         $(XML)
-
-INSTALL        = Makefile $(HEADS) $(SRCS) $(MANS)
-
-FAIL   = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \
-         test.15 test.20 test.22 test.24 test.26 test.27 test.30 \
-         test.36 test.37 test.40 test.50 test.61 test.64 test.65 \
-         test.66
+clean:
+       rm -f $(CLEAN)
 
-SUCCEED        = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \
-         test.14 test.16 test.17 test.18 test.19 test.21 test.23 \
-         test.25 test.28 test.29 test.31 test.32 test.33 test.34 \
-         test.35 test.38 test.39 test.41 test.42 test.43 test.44 \
-         test.45 test.46 test.47 test.48 test.49 test.51 test.52 \
-         test.54 test.55 test.56 test.57 test.58 test.59 test.60 \
-         test.62 test.63 test.67
+cleanlint:
+       rm -f $(LNS) $(LLNS)
 
-all: mdocml
+dist:  mdocml-$(VERSION).tar.gz
 
-lint: llib-lmdocml.ln
+port:  mdocml-oport-$(VERSION).tar.gz mdocml-nport-$(VERSION).tar.gz
 
-dist: mdocml.tgz
+www:   $(HTMLS) $(TARGZS)
 
-www: $(HTML) $(XML)
+installwww: www
+       install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/
+       install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
+       install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
+       install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/
+       install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz
+       install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/
+       install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/mdocml.tar.gz
 
-regress: mdocml
+regress: mdoclint $(FAIL) $(SUCCEED)
        @for f in $(FAIL); do \
-               echo "./mdocml $$f" ; \
-               ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \
-       done
+               echo "./mdoclint $$f" ; \
+               ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done
        @for f in $(SUCCEED); do \
-               echo "./mdocml $$f" ; \
-               ./mdocml $$f 1>/dev/null || exit 1 ; \
-       done
-
-mdocml: mdocml.o libmdocml.a
-       $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a
+               echo "./mdoclint $$f" ; \
+               ./mdoclint $$f 2>/dev/null || exit 1 ; done
 
-clean:
-       rm -f $(CLEAN)
+install:
+       mkdir -p $(BINDIR)
+       mkdir -p $(INCLUDEDIR)
+       mkdir -p $(LIBDIR)/lib
+       mkdir -p $(MANDIR)/man1
+       mkdir -p $(MANDIR)/man3
+       $(INSTALL_PROGRAM) mdocterm $(BINDIR)
+       $(INSTALL_PROGRAM) mdoctree $(BINDIR)
+       $(INSTALL_PROGRAM) mdoclint $(BINDIR)
+       $(INSTALL_MAN) mdocterm.1 $(MANDIR)/man1
+       $(INSTALL_MAN) mdoctree.1 $(MANDIR)/man1
+       $(INSTALL_MAN) mdoclint.1 $(MANDIR)/man1
+       $(INSTALL_MAN) mdoc.3 $(MANDIR)/man3
+       $(INSTALL_LIB) libmdoc.a $(LIBDIR)
+       $(INSTALL_DATA) mdoc.h $(INCLUDEDIR)
 
-index.html: index.7 mdocml.css
-       ./mdocml -W -fhtml -e -o $@ index.7
+uninstall:
+       rm -f $(BINDIR)/mdocterm
+       rm -f $(BINDIR)/mdoctree
+       rm -f $(BINDIR)/mdoclint
+       rm -f $(MANDIR)/man1/mdocterm.1
+       rm -f $(MANDIR)/man1/mdoctree.1
+       rm -f $(MANDIR)/man1/mdoclint.1
+       rm -f $(MANDIR)/man3/mdoc.3
+       rm -f $(LIBDIR)/libmdoc.a
+       rm -f $(INCLUDEDIR)/mdoc.h
+
+lib.ln: lib.c private.h
+lib.o: lib.c private.h
+
+att.ln: att.c private.h
+att.o: att.c private.h
+
+arch.ln: arch.c private.h
+arch.o: arch.c private.h
+
+vol.ln: vol.c private.h
+vol.o: vol.c private.h
+
+msec.ln: msec.c private.h
+msec.o: msec.c private.h
+
+st.ln: st.c private.h
+st.o: st.c private.h
+
+lib.c: lib.in strings.sh
+       sh strings.sh -o $@ lib lib.in
+
+st.c: st.in strings.sh
+       sh strings.sh -o $@ st st.in
+
+msec.c: msec.in strings.sh
+       sh strings.sh -o $@ msec msec.in
+
+att.c: att.in strings.sh
+       sh strings.sh -o $@ att att.in
+
+arch.c: arch.in strings.sh
+       sh strings.sh -o $@ arch arch.in
+
+vol.c: vol.in strings.sh
+       sh strings.sh -o $@ vol vol.in
+
+macro.ln: macro.c private.h
+macro.o: macro.c private.h
+
+term.ln: term.c term.h 
+term.o: term.c term.h
+
+strings.ln: strings.c private.h
+strings.o: strings.c private.h
+
+hash.ln: hash.c private.h
+hash.o: hash.c private.h
+
+mdoc.ln: mdoc.c private.h
+mdoc.o: mdoc.c private.h
+
+mdocterm.ln: mdocterm.c mmain.h
+mdocterm.o: mdocterm.c mmain.h
+
+mdoclint.ln: mdoclint.c mmain.h
+mdoclint.o: mdoclint.c mmain.h
+
+mdoctree.ln: mdoctree.c mmain.h
+mdoctree.o: mdoctree.c mmain.h
+
+xstd.ln: xstd.c private.h
+xstd.o: xstd.c private.h
+
+argv.ln: argv.c private.h
+argv.o: argv.c private.h
+
+validate.ln: validate.c private.h
+validate.o: validate.c private.h
+
+action.ln: action.c private.h
+action.o: action.c private.h
+
+mmain.ln: mmain.c mmain.h
+mmain.o: mmain.c mmain.h
+
+private.h: mdoc.h
+
+mmain.h: mdoc.h
 
-index.xml: index.7 mdocml.css
-       ./mdocml -W -o $@ index.7
+term.h: mdoc.h
 
-mdocml.html: mdocml.1 mdocml.css
-       ./mdocml -W -fhtml -e -o $@ mdocml.1
+mdocml-nport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.netbsd DESCR
+       mkdir -p .dist/mdocml/
+       sed -e "s!@VERSION@!$(VERSION)!" Makefile.netbsd > \
+               .dist/mdocml/Makefile
+       md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo
+       rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
+       sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
+       install -m 0644 DESCR .dist/mdocml/
+       echo @comment $$NetBSD$$ > .dist/mdocml/PLIST
+       echo bin/mdocterm >> .dist/mdocml/PLIST
+       echo bin/mdoctree >> .dist/mdocml/PLIST
+       echo bin/mdoclint >> .dist/mdocml/PLIST
+       echo lib/libmdoc.a >> .dist/mdocml/PLIST
+       echo include/mdoc.h >> .dist/mdocml/PLIST
+       echo man/man1/mdoctree.1 >> .dist/mdocml/PLIST
+       echo man/man1/mdocterm.1 >> .dist/mdocml/PLIST
+       echo man/man1/mdoclint.1 >> .dist/mdocml/PLIST
+       echo man/man3/mdoc.3 >> .dist/mdocml/PLIST
+       ( cd .dist/ && tar zcf ../$@ mdocml/ )
+       rm -rf .dist/
 
-install-www: www dist
-       install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz
-       install -m 0644 mdocml.tgz $(PREFIX)/mdocml.tgz
-       install -m 0644 $(HTML) $(XML) $(PREFIX)/
+mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.openbsd DESCR
+       mkdir -p .dist/mdocml/pkg
+       sed -e "s!@VERSION@!$(VERSION)!" Makefile.openbsd > \
+               .dist/mdocml/Makefile
+       md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo
+       rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
+       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.tgz: $(INSTALL)
+mdocml-$(VERSION).tar.gz: $(INSTALL)
        mkdir -p .dist/mdocml/mdocml-$(VERSION)/
+       mkdir -p .dist/mdocml/mdocml-$(VERSION)/regress/
        install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/
-       ( cd .dist/mdocml/ && tar zcf ../../mdocml.tgz mdocml-$(VERSION)/ )
+       install -m 0644 $(REGRESS) .dist/mdocml/mdocml-$(VERSION)/regress/
+       ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )
        rm -rf .dist/
 
-llib-lmdocml.ln: mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln
-       $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln
-
-mdocml.ln: mdocml.c libmdocml.h
-
-mdocml.o: mdocml.c libmdocml.h
-
-libmdocml.a: libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o
-       $(AR) rs $@ libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o
-
-xml.ln: xml.c private.h libmdocml.h ml.h
-
-xml.o: xml.c private.h libmdocml.h ml.h
-
-html.ln: html.c private.h libmdocml.h
-
-html.o: html.c private.h libmdocml.h
-
-roff.ln: roff.c private.h roff.h libmdocml.h
-
-roff.o: roff.c private.h roff.h libmdocml.h
+llib-llibmdoc.ln: $(LIBLNS)
+       $(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS)
 
-libmdocml.ln: libmdocml.c private.h libmdocml.h
+llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln
+       $(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln
 
-libmdocml.o: libmdocml.c private.h libmdocml.h
+llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln
+       $(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln
 
-ml.ln: ml.c private.h libmdocml.h ml.h
+libmdoc.a: $(LIBOBJS)
+       $(AR) rs $@ $(LIBOBJS)
 
-ml.o: ml.c private.h libmdocml.h ml.h
+mdocterm: $(TERMOBJS) libmdoc.a
+       $(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a 
 
-mlg.ln: mlg.c private.h libmdocml.h ml.h
+mdoctree: $(TREEOBJS) libmdoc.a
+       $(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a 
 
-mlg.o: mlg.c private.h libmdocml.h ml.h
+mdoclint: $(LINTOBJS) libmdoc.a
+       $(CC) $(CFLAGS) -o $@ $(LINTOBJS) libmdoc.a 
 
-compat.ln: compat.c
+.sgml.html:
+       validate $<
+       sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
 
-compat.o: compat.c