aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-08-20 05:52:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-08-20 05:52:59 +0000
commit1082451355936bbbae957af14276bb2805f5e8dd (patch)
tree83eb6c3b9adcaabfaaa520071ddb4c52815d59da /Makefile
parenta1567e8417f169edf6c71532dc11bfa763ac444b (diff)
downloadmandoc-1082451355936bbbae957af14276bb2805f5e8dd.tar.gz
mandoc-1082451355936bbbae957af14276bb2805f5e8dd.tar.zst
mandoc-1082451355936bbbae957af14276bb2805f5e8dd.zip
Fixed Makefile auto-generation of manuals not to use -fstrict and [old] -Werror.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5b1ca7b7..620d3182 100644
--- a/Makefile
+++ b/Makefile
@@ -298,16 +298,16 @@ mandoc: $(MAINOBJS) libroff.a libmdoc.a libman.a libmandoc.a
sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
.1.1.txt .3.3.txt .7.7.txt:
- ./mandoc -Tascii -Wall,error -fstrict $< | col -b > $@
+ ./mandoc -Tascii -Wall,stop $< | col -b > $@
.1.1.sgml .3.3.sgml .7.7.sgml:
- ./mandoc -Thtml -Wall,error -fstrict -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@
+ ./mandoc -Thtml -Wall,stop -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@
.1.1.ps .3.3.ps .7.7.ps:
- ./mandoc -Tps -Wall,error -fstrict $< > $@
+ ./mandoc -Tps -Wall,stop $< > $@
.1.1.pdf .3.3.pdf .7.7.pdf:
- ./mandoc -Tpdf -Wall,error -fstrict $< > $@
+ ./mandoc -Tpdf -Wall,stop $< > $@
.tar.gz.md5:
md5 $< > $@