=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.23 retrieving revision 1.28 diff -u -p -r1.23 -r1.28 --- mandoc/Makefile 2008/12/04 16:19:52 1.23 +++ mandoc/Makefile 2008/12/07 14:38:57 1.28 @@ -12,7 +12,7 @@ OBJS = mdocml.o html.o xml.o libmdocml.o roff.o ml.o m SRCS = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c compat.c tokens.c -HEADS = libmdocml.h private.h +HEADS = libmdocml.h private.h ml.h roff.h MANS = mdocml.1 @@ -22,12 +22,13 @@ INSTALL = Makefile $(HEADS) $(SRCS) $(MANS) FAIL = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \ test.15 test.20 test.22 test.24 test.26 test.27 test.30 \ - test.36 test.37 test.40 + test.36 test.37 test.40 test.50 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.37 test.38 test.39 + test.35 test.38 test.39 test.41 test.42 test.43 test.44 \ + test.45 test.46 test.47 test.48 test.49 test.51 test.52 all: mdocml @@ -37,8 +38,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 @@ -70,9 +77,9 @@ html.ln: html.c private.h libmdocml.h html.o: html.c private.h libmdocml.h -roff.ln: roff.c private.h libmdocml.h +roff.ln: roff.c private.h roff.h libmdocml.h -roff.o: roff.c private.h libmdocml.h +roff.o: roff.c private.h roff.h libmdocml.h libmdocml.ln: libmdocml.c private.h libmdocml.h