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

Diff for /mandoc/Makefile between version 1.220 and 1.222

version 1.220, 2009/09/25 13:33:47 version 1.222, 2009/10/03 16:36:06
Line 17  CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-
Line 17  CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-
 CFLAGS    += $(VFLAGS)  CFLAGS    += $(VFLAGS)
 LINTFLAGS += $(VFLAGS)  LINTFLAGS += $(VFLAGS)
   
   MANDOCFLAGS     = -Wall -fstrict
   MANDOCHTML      = -Thtml -ostyle=style.css,man=%N.%S.html,includes=%I.html
   
 MDOCLNS    = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \  MDOCLNS    = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
              mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \               mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \
              lib.ln att.ln arch.ln vol.ln msec.ln st.ln \               lib.ln att.ln arch.ln vol.ln msec.ln st.ln \
Line 56  GSGMLS    = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manu
Line 59  GSGMLS    = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manu
              mandoc_char.7.sgml man.7.sgml man.3.sgml               mandoc_char.7.sgml man.7.sgml man.3.sgml
 SGMLS      = index.sgml $(GSGMLS)  SGMLS      = index.sgml $(GSGMLS)
 XSLS       = ChangeLog.xsl  XSLS       = ChangeLog.xsl
 HTMLS      = index.html ChangeLog.html mandoc.1.html mdoc.3.html \  HTMLS      = index.html mandoc.1.html mdoc.3.html \
              man.3.html mdoc.7.html man.7.html mandoc_char.7.html \               man.3.html mdoc.7.html man.7.html mandoc_char.7.html \
              manuals.7.html               manuals.7.html
 TEXTS      = mandoc.1.txt mdoc.3.txt man.3.txt mdoc.7.txt man.7.txt \  TEXTS      = mandoc.1.txt mdoc.3.txt man.3.txt mdoc.7.txt man.7.txt \
              mandoc_char.7.txt manuals.7.html               mandoc_char.7.txt manuals.7.txt ChangeLog.txt
 EXAMPLES   = example.style.css  EXAMPLES   = example.style.css
 XMLS       = ChangeLog.xml  XMLS       = ChangeLog.xml
 STATICS    = index.css style.css external.png  STATICS    = index.css style.css external.png
Line 194  libmdoc.h: mdoc.h
Line 197  libmdoc.h: mdoc.h
 ChangeLog.xml:  ChangeLog.xml:
         cvs2cl --xml --xml-encoding iso-8859-15 -t --noxmlns -f $@          cvs2cl --xml --xml-encoding iso-8859-15 -t --noxmlns -f $@
   
   ChangeLog.txt:
           cvs2cl -t -f $@
   
 ChangeLog.html: ChangeLog.xml ChangeLog.xsl  ChangeLog.html: ChangeLog.xml ChangeLog.xsl
         xsltproc -o $@ ChangeLog.xsl ChangeLog.xml          xsltproc -o $@ ChangeLog.xsl ChangeLog.xml
   
Line 226  mandoc: $(MAINOBJS) libmdoc.a libman.a
Line 232  mandoc: $(MAINOBJS) libmdoc.a libman.a
         sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@          sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
   
 .1.1.txt:  .1.1.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc $(MANDOCFLAGS) $< | col -b > $@
   
 .1.1.sgml:  .1.1.sgml:
         ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@          ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
   
 .3.3.txt:  .3.3.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc $(MANDOCFLAGS) $< | col -b > $@
   
 .3.3.sgml:  .3.3.sgml:
         ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@          ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
   
 .7.7.txt:  .7.7.txt:
         ./mandoc -Wall,error -fstrict $< | col -b > $@          ./mandoc $(MANDOCFLAGS) $< | col -b > $@
   
 .7.7.sgml:  .7.7.sgml:
         ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@          ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
   
 .tar.gz.md5:  .tar.gz.md5:
         md5 $< > $@          md5 $< > $@

Legend:
Removed from v.1.220  
changed lines
  Added in v.1.222

CVSweb