=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.24 retrieving revision 1.26 diff -u -p -r1.24 -r1.26 --- mandoc/Makefile 2008/12/04 19:31:57 1.24 +++ mandoc/Makefile 2008/12/05 19:45:15 1.26 @@ -27,7 +27,7 @@ FAIL = test.0 test.1 test.2 test.3 test.4 test.5 test. 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.35 test.38 test.39 test.41 all: mdocml @@ -37,8 +37,14 @@ lint: llib-lmdocml.ln dist: mdocml.tgz 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 + @for f in $(FAIL); do \ + echo "./mdocml $$f" ; \ + ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \ + 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