[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Makefile between version 1.210 and 1.212

version 1.210, 2009/09/17 07:41:28 version 1.212, 2009/09/21 13:06:13
Line 1 
Line 1 
 .SUFFIXES:      .html .xml .sgml .1.txt .3.txt .7.txt .1 .3 .7 .md5 .tar.gz  .SUFFIXES:      .html .xml .sgml .1.txt .3.txt .7.txt .1 .3 .7 .md5 .tar.gz .1.html .3.html .7.html
   
 BINDIR          = $(PREFIX)/bin  BINDIR          = $(PREFIX)/bin
 INCLUDEDIR      = $(PREFIX)/include  INCLUDEDIR      = $(PREFIX)/include
Line 51  DATAS    = arch.in att.in lib.in msec.in st.in vol.in 
Line 51  DATAS    = arch.in att.in lib.in msec.in st.in vol.in 
 HEADS      = mdoc.h libmdoc.h man.h libman.h term.h libmandoc.h  HEADS      = mdoc.h libmdoc.h man.h libman.h term.h libmandoc.h
 SGMLS      = index.sgml  SGMLS      = index.sgml
 XSLS       = ChangeLog.xsl  XSLS       = ChangeLog.xsl
 HTMLS      = index.html ChangeLog.html  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
 XMLS       = ChangeLog.xml  XMLS       = ChangeLog.xml
 STATICS    = style.css external.png  STATICS    = style.css external.png
 MD5S       = mdocml-$(VERSION).md5  MD5S       = mdocml-$(VERSION).md5
Line 78  cleanlint:
Line 80  cleanlint:
   
 dist:   mdocml-$(VERSION).tar.gz  dist:   mdocml-$(VERSION).tar.gz
   
 html:   $(HTMLS)  
   
 www:    all $(HTMLS) $(MD5S) $(TARGZS) $(TEXTS)  www:    all $(HTMLS) $(MD5S) $(TARGZS) $(TEXTS)
   
 installwww: www  installwww: www
Line 216  mandoc: $(MAINOBJS) libmdoc.a libman.a
Line 216  mandoc: $(MAINOBJS) libmdoc.a libman.a
 .1.1.txt:  .1.1.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc -Wall,error -fstrict $< | col -b > $@
   
   .1.1.html:
           ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
   
 .3.3.txt:  .3.3.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc -Wall,error -fstrict $< | col -b > $@
   
   .3.3.html:
           ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
   
 .7.7.txt:  .7.7.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc -Wall,error -fstrict $< | col -b > $@
   
   .7.7.html:
           ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
   
 .tar.gz.md5:  .tar.gz.md5:
         md5 $< > $@          md5 $< > $@

Legend:
Removed from v.1.210  
changed lines
  Added in v.1.212

CVSweb