]> git.cameronkatri.com Git - mandoc.git/blobdiff - Makefile
Fix in -Tascii where `Lb' causes line-break in any section (should only happen in...
[mandoc.git] / Makefile
index 0cc564394702c2a08e8e09a922b9e603b93ca1e8..962f0a7aa6bbc69673b1fe1b1247fb59a0628056 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.SUFFIXES:     .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.html .3.html .7.html
+.SUFFIXES:     .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.txt .3.txt .7.txt .1.sgml .3.sgml .7.sgml
 
 BINDIR         = $(PREFIX)/bin
 INCLUDEDIR     = $(PREFIX)/include
@@ -48,13 +48,20 @@ LNS    = $(MAINLNS) $(MDOCLNS) $(MANLNS)
 LIBS      = libmdoc.a libman.a
 OBJS      = $(MDOCOBJS) $(MAINOBJS) $(MANOBJS)
 SRCS      = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS)
-DATAS     = arch.in att.in lib.in msec.in st.in vol.in chars.in
-HEADS     = mdoc.h libmdoc.h man.h libman.h term.h libmandoc.h
-SGMLS     = index.sgml 
+DATAS     = arch.in att.in lib.in msec.in st.in \
+            vol.in chars.in
+HEADS     = mdoc.h libmdoc.h man.h libman.h term.h \
+            libmandoc.h html.h chars.h
+GSGMLS    = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manuals.7.sgml \
+            mandoc_char.7.sgml man.7.sgml man.3.sgml
+SGMLS     = index.sgml $(GSGMLS)
 XSLS      = ChangeLog.xsl
 HTMLS     = index.html ChangeLog.html mandoc.1.html mdoc.3.html \
             man.3.html mdoc.7.html man.7.html mandoc_char.7.html \
             manuals.7.html
+TEXTS     = mandoc.1.txt mdoc.3.txt man.3.txt mdoc.7.txt man.7.txt \
+            mandoc_char.7.txt manuals.7.html
+EXAMPLES   = example.style.css
 XMLS      = ChangeLog.xml
 STATICS           = index.css style.css external.png
 MD5S      = mdocml-$(VERSION).md5 
@@ -63,9 +70,9 @@ MANS     = mandoc.1 mdoc.3 mdoc.7 manuals.7 mandoc_char.7 \
             man.7 man.3
 BINS      = mandoc
 CLEAN     = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
-            $(TARGZS) tags $(MD5S) $(XMLS) 
+            $(TARGZS) tags $(MD5S) $(XMLS) $(TEXTS) $(GSGMLS)
 INSTALL           = $(SRCS) $(HEADS) Makefile $(MANS) $(SGMLS) $(STATICS) \
-            $(DATAS) $(XSLS)
+            $(DATAS) $(XSLS) $(EXAMPLES)
 
 all:   $(BINS)
 
@@ -79,10 +86,10 @@ cleanlint:
 
 dist:  mdocml-$(VERSION).tar.gz
 
-www:   all $(HTMLS) $(MD5S) $(TARGZS)
+www:   all $(HTMLS) $(TEXTS) $(MD5S) $(TARGZS)
 
 installwww: www
-       install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/
+       install -m 0444 $(HTMLS) $(TEXTS) $(STATICS) $(PREFIX)/
        install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
        install -m 0444 mdocml-$(VERSION).md5 $(PREFIX)/snapshots/
        install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
@@ -221,19 +228,19 @@ mandoc: $(MAINOBJS) libmdoc.a libman.a
 .1.1.txt:
        ./mandoc -Wall,error -fstrict $< | col -b > $@
 
-.1.1.html:
+.1.1.sgml:
        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
 
 .3.3.txt:
        ./mandoc -Wall,error -fstrict $< | col -b > $@
 
-.3.3.html:
+.3.3.sgml:
        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
 
 .7.7.txt:
        ./mandoc -Wall,error -fstrict $< | col -b > $@
 
-.7.7.html:
+.7.7.sgml:
        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
 
 .tar.gz.md5: