+dist: mdocml-$(VERSION).tar.gz
+
+port: mdocml-oport-$(VERSION).tar.gz
+
+www: $(HTMLS) $(TARGZS)
+
+installwww: www
+ install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/
+ install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
+ install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/
+ install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
+ install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz
+
+regress::
+ @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
+
+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 0755 mdoclint $(PREFIX)/bin/
+ install -m 0444 mdocterm.1 $(PREFIX)/man/man1/
+ install -m 0444 mdoctree.1 $(PREFIX)/man/man1/
+ install -m 0444 mdoclint.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/
+
+uninstall:
+ rm -f $(PREFIX)/bin/mdocterm
+ rm -f $(PREFIX)/bin/mdoctree
+ rm -f $(PREFIX)/bin/mdoclint
+ rm -f $(PREFIX)/man/man1/mdocterm.1
+ rm -f $(PREFIX)/man/man1/mdoctree.1
+ rm -f $(PREFIX)/man/man1/mdoclint.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
+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
+
+term.h: mdoc.h
+
+mdocml-oport-$(VERSION).tar.gz: mdocml-$(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$$ > .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/ )