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

Diff for /mandoc/Makefile between version 1.276 and 1.277

version 1.276, 2010/06/07 12:20:07 version 1.277, 2010/06/07 20:57:09
Line 1 
Line 1 
 .SUFFIXES:      .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.txt .3.txt .7.txt .1.sgml .3.sgml .7.sgml .h .h.html  .SUFFIXES:      .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.txt .3.txt .7.txt .1.sgml .3.sgml .7.sgml .h .h.html .1.ps .3.ps .7.ps
   
 PREFIX          = /usr/local  PREFIX          = /usr/local
 BINDIR          = $(PREFIX)/bin  BINDIR          = $(PREFIX)/bin
Line 33  MANDOCFLAGS = -Wall -fstrict
Line 33  MANDOCFLAGS = -Wall -fstrict
   
 MANDOCHTML = -Thtml -Ostyle=style.css,man=%N.%S.html,includes=%I.html  MANDOCHTML = -Thtml -Ostyle=style.css,man=%N.%S.html,includes=%I.html
   
   MANDOCPS   = -Tps
   
 ROFFLNS    = roff.ln  ROFFLNS    = roff.ln
   
 ROFFSRCS   = roff.c  ROFFSRCS   = roff.c
Line 107  HTMLS    = ChangeLog.html index.html man.h.html mdoc.h
Line 109  HTMLS    = ChangeLog.html index.html man.h.html mdoc.h
              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 \
              roff.7.html roff.3.html               roff.7.html roff.3.html
   
   PSS        = mandoc.1.ps mdoc.3.ps man.3.ps mdoc.7.ps man.7.ps \
                mandoc_char.7.ps roff.7.ps roff.3.ps
   
 XSLS       = ChangeLog.xsl  XSLS       = ChangeLog.xsl
   
 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 \
Line 134  CONFIGS    = config.h.pre config.h.post
Line 139  CONFIGS    = config.h.pre config.h.post
   
 DOCLEAN    = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \  DOCLEAN    = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
              $(TARGZS) tags $(MD5S) $(XMLS) $(TEXTS) $(GSGMLS) \               $(TARGZS) tags $(MD5S) $(XMLS) $(TEXTS) $(GSGMLS) \
              config.h config.log               config.h config.log $(PSS)
   
 DOINSTALL  = $(SRCS) $(HEADS) Makefile $(MANS) $(SGMLS) $(STATICS) \  DOINSTALL  = $(SRCS) $(HEADS) Makefile $(MANS) $(SGMLS) $(STATICS) \
              $(DATAS) $(XSLS) $(EXAMPLES) $(TESTS) $(CONFIGS)               $(DATAS) $(XSLS) $(EXAMPLES) $(TESTS) $(CONFIGS)
Line 146  lint: $(LLNS)
Line 151  lint: $(LLNS)
 clean:  clean:
         rm -f $(DOCLEAN)          rm -f $(DOCLEAN)
   
 cleanlint:  
         rm -f $(LNS) $(LLNS)  
   
 cleanhtml:  
         rm -f $(HTMLS) $(GSGMLS)  
   
 dist:   mdocml-$(VERSION).tar.gz  dist:   mdocml-$(VERSION).tar.gz
   
 www:    all $(GSGMLS) $(HTMLS) $(TEXTS) $(MD5S) $(TARGZS)  www:    all $(GSGMLS) $(HTMLS) $(TEXTS) $(MD5S) $(TARGZS) $(PSS)
   
   ps:     $(PSS)
   
 installwww: www  installwww: www
         $(INSTALL_DATA) $(HTMLS) $(TEXTS) $(STATICS) $(DESTDIR)$(PREFIX)/          $(INSTALL_DATA) $(HTMLS) $(TEXTS) $(STATICS) $(DESTDIR)$(PREFIX)/
         $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(DESTDIR)$(PREFIX)/snapshots/          $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(DESTDIR)$(PREFIX)/snapshots/
Line 300  mandoc: $(MAINOBJS) libroff.a libmdoc.a libman.a libma
Line 301  mandoc: $(MAINOBJS) libroff.a libmdoc.a libman.a libma
   
 .1.1.sgml .3.3.sgml .7.7.sgml:  .1.1.sgml .3.3.sgml .7.7.sgml:
         ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@          ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
   
   .1.1.ps .3.3.ps .7.7.ps:
           ./mandoc $(MANDOCFLAGS) $(MANDOCPS) $< > $@
   
 .tar.gz.md5:  .tar.gz.md5:
         md5 $< > $@          md5 $< > $@

Legend:
Removed from v.1.276  
changed lines
  Added in v.1.277

CVSweb