summaryrefslogtreecommitdiffstatshomepage
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
commit9bc504722abb3aadcb957b7e1fca83b22b5adbb2 (patch)
treeeedf0c0a25d0ac4eb38df1c47dffb103d60dbf1c /Makefile
parent47680c1fd7fef419b02b46cda50beec3dc16deaa (diff)
downloadmandoc-9bc504722abb3aadcb957b7e1fca83b22b5adbb2.tar.gz
mandoc-9bc504722abb3aadcb957b7e1fca83b22b5adbb2.tar.zst
mandoc-9bc504722abb3aadcb957b7e1fca83b22b5adbb2.zip
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