=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.86 retrieving revision 1.89 diff -u -p -r1.86 -r1.89 --- mandoc/Makefile 2009/02/25 12:38:15 1.86 +++ mandoc/Makefile 2009/02/27 09:39:40 1.89 @@ -1,7 +1,7 @@ .SUFFIXES: .html .sgml -VERSION = 1.3.5 -VDATE = 25 February 2009 +VERSION = 1.3.6 +VDATE = 27 February 2009 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g @@ -87,7 +87,9 @@ FAIL = regress/test.empty \ regress/test.escape.06 \ regress/test.escape.07 \ regress/test.escape.08 \ - regress/test.escape.09 + regress/test.escape.09 \ + regress/test.escape.11 \ + regress/test.escape.12 SUCCEED = regress/test.prologue.05 \ regress/test.prologue.07 \ @@ -114,7 +116,8 @@ SUCCEED = regress/test.prologue.05 \ regress/test.sh.01 \ regress/test.sh.02 \ regress/test.escape.00 \ - regress/test.escape.05 + regress/test.escape.05 \ + regress/test.escape.10 REGRESS = $(FAIL) $(SUCCEED) @@ -125,6 +128,9 @@ lint: $(LLNS) clean: rm -f $(CLEAN) +cleanlint: + rm -f $(LNS) $(LLNS) + dist: mdocml-$(VERSION).tar.gz port: mdocml-oport-$(VERSION).tar.gz @@ -138,7 +144,7 @@ installwww: www 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:: +regress: mdoclint @for f in $(FAIL); do \ echo "./mdoclint $$f" ; \ ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done @@ -225,7 +231,7 @@ mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar. 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.86 2009/02/25 12:38:15 kristaps Exp $$ > .dist/mdocml/pkg/PLIST + echo @comment $$OpenBSD: Makefile,v 1.89 2009/02/27 09:39:40 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