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

Diff for /mandoc/Makefile between version 1.36 and 1.43

version 1.36, 2008/12/08 16:29:57 version 1.43, 2008/12/10 12:09:47
Line 1 
Line 1 
 .SUFFIXES:      .html .7  VERSION = 1.0.2
   
 VERSION = 1.0.1  
   
 # FIXME  # FIXME
 CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG  CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG
   
 LINTFLAGS += -c -e -f -u  
   
 LNS     = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \  LNS     = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \
           compat.ln tokens.ln literals.ln            compat.ln tokens.ln literals.ln tags.ln
   
 LLNS    = llib-lmdocml.ln  LLNS    = llib-lmdocml.ln
   
 LIBS    = libmdocml.a  LIBS    = libmdocml.a
   
 OBJS    = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \  OBJS    = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \
           compat.o tokens.o literals.o            compat.o tokens.o literals.o tags.o
   
 SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \  SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \
           compat.c tokens.c literals.c            compat.c tokens.c literals.c tags.c
   
 HEADS   = libmdocml.h private.h ml.h roff.h  HEADS   = libmdocml.h private.h ml.h roff.h html.h
   
 MANS    = mdocml.1 index.7  MANS    = mdocml.1 index.7
   
Line 28  HTML = index.html mdocml.html 
Line 24  HTML = index.html mdocml.html 
   
 XML     = index.xml  XML     = index.xml
   
   TEXT    = index.txt
   
 CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \  CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \
           $(XML)            $(XML) $(TEXT)
   
 INSTALL = Makefile $(HEADS) $(SRCS) $(MANS)  INSTALL = Makefile $(HEADS) $(SRCS) $(MANS)
   
 FAIL    = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \  FAIL    = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \
           test.15 test.20 test.22 test.24 test.26 test.27 test.30 \            test.15 test.20 test.22 test.24 test.26 test.27 test.30 \
           test.36 test.37 test.40 test.50 test.61 test.64 test.65 \            test.36 test.37 test.40 test.50 test.61 test.64 test.65 \
           test.66            test.66 test.69 test.70
   
 SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \  SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \
           test.14 test.16 test.17 test.18 test.19 test.21 test.23 \            test.14 test.16 test.17 test.18 test.19 test.21 test.23 \
Line 44  SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12
Line 42  SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12
           test.35 test.38 test.39 test.41 test.42 test.43 test.44 \            test.35 test.38 test.39 test.41 test.42 test.43 test.44 \
           test.45 test.46 test.47 test.48 test.49 test.51 test.52 \            test.45 test.46 test.47 test.48 test.49 test.51 test.52 \
           test.54 test.55 test.56 test.57 test.58 test.59 test.60 \            test.54 test.55 test.56 test.57 test.58 test.59 test.60 \
           test.62 test.63 test.67            test.62 test.63 test.67 test.68 test.71
   
 all: mdocml  all: mdocml
   
Line 52  lint: llib-lmdocml.ln
Line 50  lint: llib-lmdocml.ln
   
 dist: mdocml.tgz  dist: mdocml.tgz
   
 www: $(HTML) $(XML)  www: all $(HTML) $(XML) $(TEXT)
   
 regress: mdocml  regress: mdocml
         @for f in $(FAIL); do \          @for f in $(FAIL); do \
                 echo "./mdocml $$f" ; \                  echo "./mdocml $$f" ; \
                 ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \                  ./mdocml -v $$f 1>/dev/null 2>/dev/null || continue ; \
         done          done
         @for f in $(SUCCEED); do \          @for f in $(SUCCEED); do \
                 echo "./mdocml $$f" ; \                  echo "./mdocml $$f" ; \
                 ./mdocml $$f 1>/dev/null || exit 1 ; \                  ./mdocml -v $$f 1>/dev/null || exit 1 ; \
         done          done
   
 mdocml: mdocml.o libmdocml.a  mdocml: mdocml.o libmdocml.a
Line 71  clean:
Line 69  clean:
         rm -f $(CLEAN)          rm -f $(CLEAN)
   
 index.html: index.7 mdocml.css  index.html: index.7 mdocml.css
         ./mdocml -W -fhtml -e -o $@ index.7          ./mdocml -Wall -fhtml -e -o $@ index.7
   
 index.xml: index.7 mdocml.css  index.xml: index.7 mdocml.css
         ./mdocml -W -o $@ index.7          ./mdocml -Wall -o $@ index.7
   
   index.txt: index.7
           cp -f index.7 index.txt
   
 mdocml.html: mdocml.1 mdocml.css  mdocml.html: mdocml.1 mdocml.css
         ./mdocml -W -fhtml -e -o $@ mdocml.1          ./mdocml -Wall -fhtml -e -o $@ mdocml.1
   
 install-www: www dist  install-www: www dist
         install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz          install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz
Line 90  mdocml.tgz: $(INSTALL)
Line 91  mdocml.tgz: $(INSTALL)
         ( cd .dist/mdocml/ && tar zcf ../../mdocml.tgz mdocml-$(VERSION)/ )          ( cd .dist/mdocml/ && tar zcf ../../mdocml.tgz mdocml-$(VERSION)/ )
         rm -rf .dist/          rm -rf .dist/
   
 llib-lmdocml.ln: mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln  llib-lmdocml.ln: mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln tags.ln
         $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln          $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html.ln xml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln tags.ln
   
 mdocml.ln: mdocml.c libmdocml.h  mdocml.ln: mdocml.c libmdocml.h
   
 mdocml.o: mdocml.c libmdocml.h  mdocml.o: mdocml.c libmdocml.h
   
 libmdocml.a: libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o  libmdocml.a: libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o tags.o
         $(AR) rs $@ libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o          $(AR) rs $@ libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o tags.o
   
 xml.ln: xml.c private.h libmdocml.h ml.h  xml.ln: xml.c private.h libmdocml.h ml.h
   
Line 108  html.ln: html.c private.h libmdocml.h
Line 109  html.ln: html.c private.h libmdocml.h
   
 html.o: html.c private.h libmdocml.h  html.o: html.c private.h libmdocml.h
   
   tags.ln: tags.c html.h
   
   tags.o: tags.c html.h
   
 roff.ln: roff.c private.h roff.h libmdocml.h  roff.ln: roff.c private.h roff.h libmdocml.h
   
 roff.o: roff.c private.h roff.h libmdocml.h  roff.o: roff.c private.h roff.h libmdocml.h
Line 127  mlg.o: mlg.c private.h libmdocml.h ml.h
Line 132  mlg.o: mlg.c private.h libmdocml.h ml.h
 compat.ln: compat.c  compat.ln: compat.c
   
 compat.o: compat.c  compat.o: compat.c
   
   html.h: ml.h
   
   ml.h: private.h
   
   private.h: libmdocml.h
   

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.43

CVSweb