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

Diff for /mandoc/Makefile between version 1.86 and 1.89

version 1.86, 2009/02/25 12:38:15 version 1.89, 2009/02/27 09:39:40
Line 1 
Line 1 
 .SUFFIXES:      .html .sgml  .SUFFIXES:      .html .sgml
   
 VERSION = 1.3.5  VERSION = 1.3.6
 VDATE   = 25 February 2009  VDATE   = 27 February 2009
   
 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
   
Line 87  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 114  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 125  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 138  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

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.89

CVSweb