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

Diff for /mandoc/Makefile between version 1.84 and 1.89

version 1.84, 2009/02/24 12:20:52 version 1.89, 2009/02/27 09:39:40
Line 1 
Line 1 
 .SUFFIXES:      .html .sgml  .SUFFIXES:      .html .sgml
   
 VERSION = 1.3.3  VERSION = 1.3.6
   VDATE   = 27 February 2009
   
 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
   
Line 86  FAIL = regress/test.empty \
Line 87  FAIL = regress/test.empty \
           regress/test.escape.06 \            regress/test.escape.06 \
           regress/test.escape.07 \            regress/test.escape.07 \
           regress/test.escape.08 \            regress/test.escape.08 \
           regress/test.escape.09            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 113  SUCCEED = regress/test.prologue.05 \
Line 116  SUCCEED = regress/test.prologue.05 \
           regress/test.sh.01 \            regress/test.sh.01 \
           regress/test.sh.02 \            regress/test.sh.02 \
           regress/test.escape.00 \            regress/test.escape.00 \
           regress/test.escape.05            regress/test.escape.05 \
             regress/test.escape.10
   
 REGRESS = $(FAIL) $(SUCCEED)  REGRESS = $(FAIL) $(SUCCEED)
   
Line 124  lint: $(LLNS)
Line 128  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
Line 137  installwww: www
Line 144  installwww: www
         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/mdocml.tar.gz          install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/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 268  mdoclint: $(LINTOBJS) libmdoc.a
Line 275  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.84  
changed lines
  Added in v.1.89

CVSweb