=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.14 retrieving revision 1.79 diff -u -p -r1.14 -r1.79 --- mandoc/Makefile 2008/11/30 21:41:35 1.14 +++ mandoc/Makefile 2009/02/23 15:19:47 1.79 @@ -1,76 +1,248 @@ -CFLAGS += -W -Wall -Wno-unused-parameter -g +.SUFFIXES: .html .sgml -LINTFLAGS += -c -e -f -u +VERSION = 1.3.0 -LNS = mdocml.ln html4_strict.ln xml.ln libmdocml.ln roff.ln +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 -LIBS = libmdocml.a +TREELNS = mdoctree.ln mmain.ln -OBJS = mdocml.o html4_strict.o xml.o libmdocml.o roff.o +TERMLNS = mdoctree.ln mmain.ln term.ln -SRCS = mdocml.c html4_strict.c xml.c libmdocml.c roff.c +LINTLNS = mdoclint.ln mmain.ln -HEADS = libmdocml.h private.h +LNS = $(LIBLNS) $(TREELNS) $(TERMLNS) -MANS = mdocml.1 +LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln -CLEAN = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) +LIBS = libmdoc.a -INSTALL = Makefile $(HEADS) $(SRCS) $(MANS) +LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \ + validate.o action.o -FAIL = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \ - test.15 test.20 +TERMOBJS= mdocterm.o mmain.o term.o -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 +TREEOBJS= mdoctree.o mmain.o +LINTOBJS= mdoclint.o mmain.o -all: mdocml +OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) -lint: llib-lmdocml.ln +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 -dist: mdocml.tgz +HEADS = mdoc.h private.h term.h mmain.h -regress: mdocml - @for f in $(FAIL); do ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; done - @for f in $(SUCCEED); do ./mdocml $$f 1>/dev/null || exit 1 ; done +SGMLS = index.sgml -mdocml: mdocml.o libmdocml.a - $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a +HTMLS = index.html +STATICS = style.css external.png + +MANS = mdoctree.1 mdocterm.1 mdoc.3 + +BINS = mdocterm mdoctree mdoclint + +CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) + +INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS) \ + $(SGMLS) $(STATICS) + +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.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 \ + 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.14 \ + regress/test.prologue.17 \ + regress/test.prologue.20 \ + 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) + +lint: $(LLNS) + clean: rm -f $(CLEAN) -mdocml.tgz: $(INSTALL) - mkdir -p .dist/mdocml/ - install -m 0644 $(INSTALL) .dist/mdocml/ - ( cd .dist/ && tar zcf ../mdocml.tgz mdocml/ ) - rm -rf .dist/ +dist: mdocml-$(VERSION).tar.gz -llib-lmdocml.ln: mdocml.ln libmdocml.ln html4_strict.ln xml.ln roff.ln - $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html4_strict.ln xml.ln roff.ln +port: mdocml-oport-$(VERSION).tar.gz -mdocml.ln: mdocml.c libmdocml.h +www: $(HTMLS) -mdocml.o: mdocml.c libmdocml.h +regress:: mdoclint + @for f in $(FAIL); do \ + echo "./mdoclint $$f" ; \ + ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done + @for f in $(SUCCEED); do \ + echo "./mdoclint $$f" ; \ + ./mdoclint $$f 2>/dev/null || exit 1 ; done -libmdocml.a: libmdocml.o html4_strict.o xml.o roff.o - $(AR) rs $@ libmdocml.o html4_strict.o xml.o roff.o +install: + mkdir -p $(PREFIX)/bin/ + mkdir -p $(PREFIX)/include/mdoc/ + mkdir -p $(PREFIX)/lib/ + mkdir -p $(PREFIX)/man/man1/ + install -m 0755 mdocterm $(PREFIX)/bin/ + 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/ -xml.ln: xml.c private.h libmdocml.h +install-dist: mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz + 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 -xml.o: xml.c private.h libmdocml.h +uninstall: + 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 -html4_strict.ln: html4_strict.c private.h libmdocml.h +macro.ln: macro.c private.h +macro.o: macro.c private.h -html4_strict.o: html4_strict.c private.h libmdocml.h +term.ln: term.c term.h +term.o: term.c term.h -roff.ln: roff.c private.h libmdocml.h +strings.ln: strings.c private.h +strings.o: strings.c private.h -roff.o: roff.c private.h libmdocml.h +hash.ln: hash.c private.h +hash.o: hash.c private.h -libmdocml.ln: libmdocml.c private.h libmdocml.h +mdoc.ln: mdoc.c private.h +mdoc.o: mdoc.c private.h -libmdocml.o: libmdocml.c private.h libmdocml.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 + +term.h: mdoc.h + +mdocml-oport-$(VERSION).tar.gz: Makefile.port DESCR + mkdir -p .dist/mdocml/pkg + sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > .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: Makefile,v 1.79 2009/02/23 15:19:47 kristaps Exp $$ > .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) + mkdir -p .dist/mdocml/mdocml-$(VERSION)/ + install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ + ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ ) + rm -rf .dist/ + +llib-llibmdoc.ln: $(LIBLNS) + $(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS) + +llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln + $(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln + +llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln + $(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln + +libmdoc.a: $(LIBOBJS) + $(AR) rs $@ $(LIBOBJS) + +mdocterm: $(TERMOBJS) libmdoc.a + $(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a + +mdoctree: $(TREEOBJS) libmdoc.a + $(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a + +mdoclint: $(LINTOBJS) libmdoc.a + $(CC) $(CFLAGS) -o $@ $(LINTOBJS) libmdoc.a + +.sgml.html: + validate $< + cp -f $< $@