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

Diff for /mandoc/Makefile between version 1.226 and 1.231

version 1.226, 2009/10/13 10:21:24 version 1.231, 2009/10/20 18:20:59
Line 9  INSTALL_DATA = install -m 0444
Line 9  INSTALL_DATA = install -m 0444
 INSTALL_LIB     = install -m 0644  INSTALL_LIB     = install -m 0644
 INSTALL_MAN     = $(INSTALL_DATA)  INSTALL_MAN     = $(INSTALL_DATA)
   
 VERSION    = 1.9.8  VERSION    = 1.9.9
 VDATE      = 10 October 2009  VDATE      = 21 October 2009
   
 VFLAGS     = -DVERSION=\"$(VERSION)\"  VFLAGS     = -DVERSION=\"$(VERSION)\"
 CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings -g  CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings -g
 CFLAGS    += $(VFLAGS)  CFLAGS    += $(VFLAGS)
 LINTFLAGS += $(VFLAGS)  LINTFLAGS += $(VFLAGS)
   
 MANDOCFLAGS     = -Wall -fstrict  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
   
 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 \
Line 54  SRCS    = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS)
Line 54  SRCS    = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS)
 DATAS      = arch.in att.in lib.in msec.in st.in \  DATAS      = arch.in att.in lib.in msec.in st.in \
              vol.in chars.in               vol.in chars.in
 HEADS      = mdoc.h libmdoc.h man.h libman.h term.h \  HEADS      = mdoc.h libmdoc.h man.h libman.h term.h \
              libmandoc.h html.h chars.h out.h               libmandoc.h html.h chars.h out.h main.h
 GSGMLS     = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manuals.7.sgml \  GSGMLS     = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manuals.7.sgml \
              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 mandoc.1.html mdoc.3.html \  HTMLS      = index.html mandoc.1.html mdoc.3.html ChangeLog.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 \
Line 234  mandoc: $(MAINOBJS) libmdoc.a libman.a
Line 234  mandoc: $(MAINOBJS) libmdoc.a libman.a
         validate $<          validate $<
         sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@          sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
   
 .1.1.txt:  .1.1.txt .3.3.txt .7.7.txt:
         ./mandoc $(MANDOCFLAGS) $< | col -b > $@          ./mandoc $(MANDOCFLAGS) $< | col -b > $@
   
 .1.1.sgml:  .1.1.sgml .3.3.sgml .7.7.sgml:
         ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@  
   
 .3.3.txt:  
         ./mandoc $(MANDOCFLAGS) $< | col -b > $@  
   
 .3.3.sgml:  
         ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@  
   
 .7.7.txt:  
         ./mandoc $(MANDOCFLAGS) $< | col -b > $@  
   
 .7.7.sgml:  
         ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@          ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
   
 .tar.gz.md5:  .tar.gz.md5:

Legend:
Removed from v.1.226  
changed lines
  Added in v.1.231

CVSweb