=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.36 retrieving revision 1.38 diff -u -p -r1.36 -r1.38 --- mandoc/Makefile 2008/12/08 16:29:57 1.36 +++ mandoc/Makefile 2008/12/09 19:57:26 1.38 @@ -57,11 +57,11 @@ www: $(HTML) $(XML) regress: mdocml @for f in $(FAIL); do \ echo "./mdocml $$f" ; \ - ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \ + ./mdocml -v $$f 1>/dev/null 2>/dev/null || continue ; \ done @for f in $(SUCCEED); do \ echo "./mdocml $$f" ; \ - ./mdocml $$f 1>/dev/null || exit 1 ; \ + ./mdocml -v $$f 1>/dev/null || exit 1 ; \ done mdocml: mdocml.o libmdocml.a @@ -71,13 +71,13 @@ clean: rm -f $(CLEAN) index.html: index.7 mdocml.css - ./mdocml -W -fhtml -e -o $@ index.7 + ./mdocml -Wall -fhtml -e -o $@ index.7 index.xml: index.7 mdocml.css - ./mdocml -W -o $@ index.7 + ./mdocml -Wall -o $@ index.7 mdocml.html: mdocml.1 mdocml.css - ./mdocml -W -fhtml -e -o $@ mdocml.1 + ./mdocml -Wall -fhtml -e -o $@ mdocml.1 install-www: www dist install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz