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

Diff for /mandoc/Makefile between version 1.82 and 1.98

version 1.82, 2009/02/23 22:51:10 version 1.98, 2009/03/01 13:09:03
Line 1 
Line 1 
 .SUFFIXES:      .html .sgml  .SUFFIXES:      .html .sgml
   
 VERSION = 1.3.3  VERSION = 1.3.13
   VDATE   = 01 March 2009
   
 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
   
Line 41  HTMLS = index.html
Line 42  HTMLS = index.html
   
 STATICS = style.css external.png  STATICS = style.css external.png
   
 TARGZS  = mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz  TARGZS  = mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz \
             mdocml-nport-$(VERSION).tar.gz
   
 MANS    = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3  MANS    = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3
   
Line 50  BINS = mdocterm mdoctree mdoclint
Line 52  BINS = mdocterm mdoctree mdoclint
 CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \  CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
           $(TARGZS)            $(TARGZS)
   
 INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS) \  INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \
           $(SGMLS) $(STATICS)            $(STATICS) Makefile.netbsd Makefile.openbsd
   
 FAIL    = regress/test.empty \  FAIL    = regress/test.empty \
           regress/test.prologue.00 \            regress/test.prologue.00 \
Line 78  FAIL = regress/test.empty \
Line 80  FAIL = regress/test.empty \
           regress/test.prologue.31 \            regress/test.prologue.31 \
           regress/test.prologue.32 \            regress/test.prologue.32 \
           regress/test.prologue.33 \            regress/test.prologue.33 \
           regress/test.sh.01 \            regress/test.sh.03 \
           regress/test.sh.02 \            regress/test.escape.01 \
           regress/test.sh.03            regress/test.escape.02 \
             regress/test.escape.03 \
             regress/test.escape.04 \
             regress/test.escape.06 \
             regress/test.escape.07 \
             regress/test.escape.08 \
             regress/test.escape.09 \
             regress/test.escape.11 \
             regress/test.escape.12
   
 SUCCEED = regress/test.prologue.05 \  SUCCEED = regress/test.prologue.05 \
           regress/test.prologue.07 \            regress/test.prologue.07 \
Line 103  SUCCEED = regress/test.prologue.05 \
Line 113  SUCCEED = regress/test.prologue.05 \
           regress/test.list.03 \            regress/test.list.03 \
           regress/test.list.04 \            regress/test.list.04 \
           regress/test.list.05 \            regress/test.list.05 \
           regress/test.list.06            regress/test.list.06 \
             regress/test.list.07 \
             regress/test.sh.01 \
             regress/test.sh.02 \
             regress/test.escape.00 \
             regress/test.escape.05 \
             regress/test.escape.10
   
 REGRESS = $(FAIL) $(SUCCEED)  REGRESS = $(FAIL) $(SUCCEED)
   
Line 114  lint: $(LLNS)
Line 130  lint: $(LLNS)
 clean:  clean:
         rm -f $(CLEAN)          rm -f $(CLEAN)
   
   cleanlint:
           rm -f $(LNS) $(LLNS)
   
 dist:   mdocml-$(VERSION).tar.gz  dist:   mdocml-$(VERSION).tar.gz
   
 port:   mdocml-oport-$(VERSION).tar.gz  port:   mdocml-oport-$(VERSION).tar.gz mdocml-nport-$(VERSION).tar.gz
   
 www:    $(HTMLS) $(TARGZS)  www:    $(HTMLS) $(TARGZS)
   
 installwww: www  installwww: www
         install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/          install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/
         install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/          install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
         install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/  
         install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz          install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
           install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/
         install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz          install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz
           install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/
           install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/mdocml.tar.gz
   
 regress::  regress: mdoclint
         @for f in $(FAIL); do \          @for f in $(FAIL); do \
                 echo "./mdoclint $$f" ; \                  echo "./mdoclint $$f" ; \
                 ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done                  ./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done
Line 206  mmain.h: mdoc.h
Line 227  mmain.h: mdoc.h
   
 term.h: mdoc.h  term.h: mdoc.h
   
 mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.port DESCR  mdocml-nport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.netbsd DESCR
           mkdir -p .dist/mdocml/
           sed -e "s!@VERSION@!$(VERSION)!" Makefile.netbsd > \
                   .dist/mdocml/Makefile
           md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo
           rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
           sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
           install -m 0644 DESCR .dist/mdocml/
           echo @comment $$NetBSD$$ > .dist/mdocml/PLIST
           echo bin/mdocterm >> .dist/mdocml/PLIST
           echo bin/mdoctree >> .dist/mdocml/PLIST
           echo bin/mdoclint >> .dist/mdocml/PLIST
           echo lib/libmdoc.a >> .dist/mdocml/PLIST
           echo include/mdoc.h >> .dist/mdocml/PLIST
           echo man/man1/mdoctree.1 >> .dist/mdocml/PLIST
           echo man/man1/mdocterm.1 >> .dist/mdocml/PLIST
           echo man/man1/mdoclint.1 >> .dist/mdocml/PLIST
           echo man/man3/mdoc.3 >> .dist/mdocml/PLIST
           ( cd .dist/ && tar zcf ../$@ mdocml/ )
           rm -rf .dist/
   
   mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.openbsd DESCR
         mkdir -p .dist/mdocml/pkg          mkdir -p .dist/mdocml/pkg
         sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > \          sed -e "s!@VERSION@!$(VERSION)!" Makefile.openbsd > \
                 .dist/mdocml/Makefile                  .dist/mdocml/Makefile
         md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo          md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo
         rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo          rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
Line 258  mdoclint: $(LINTOBJS) libmdoc.a
Line 300  mdoclint: $(LINTOBJS) libmdoc.a
   
 .sgml.html:  .sgml.html:
         validate $<          validate $<
         cp -f $< $@          sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
   

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.98

CVSweb