summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-11-26 21:42:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-11-26 21:42:59 +0000
commit5ed11d5fa2bcaf99604e49aad7b8c12099dbf101 (patch)
tree53bc53d7a45b86f10fa2413f90ccd3296d7329ac /Makefile
parent0b18af17c9504e4688a2bbd1cbd2d1ca2b937d67 (diff)
downloadmandoc-5ed11d5fa2bcaf99604e49aad7b8c12099dbf101.tar.gz
Considerable fixes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c8791ff1..6ffbf702 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CFLAGS += -W -Wall -Wno-unused-parameter -g
+CFLAGS += -W -Wall -Wno-unused-parameter -g
LINTFLAGS += -c -e -f -u
@@ -33,8 +33,8 @@ lint: llib-lmdocml.ln
dist: mdocml.tgz
regress: mdocml
- @for f in $(FAIL); do ./mdocml $$f 2>/dev/null || continue ; done
- @for f in $(SUCCEED); do ./mdocml $$f || exit 1 ; done
+ @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
mdocml: mdocml.o libmdocml.a
$(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a