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

Diff for /mandoc/Makefile between version 1.31 and 1.32

version 1.31, 2008/12/07 23:08:23 version 1.32, 2008/12/07 23:44:19
Line 7  CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG
Line 7  CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG
   
 LINTFLAGS += -c -e -f -u  LINTFLAGS += -c -e -f -u
   
 LNS     = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln compat.ln tokens.ln literals.ln  LNS     = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \
             compat.ln tokens.ln literals.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 compat.o tokens.o literals.o  OBJS    = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \
             compat.o tokens.o literals.o
   
 SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c compat.c tokens.c literals.c  SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \
             compat.c tokens.c literals.c
   
 HEADS   = libmdocml.h private.h ml.h roff.h  HEADS   = libmdocml.h private.h ml.h roff.h
   
 MANS    = mdocml.1 index.7  MANS    = mdocml.1 index.7
   
 HTML    = index.html mdocml.html  HTML    = index.html mdocml.html
   
 CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML)  XML     = index.xml
   
   CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \
             $(XML)
   
 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 \
Line 44  lint: llib-lmdocml.ln
Line 50  lint: llib-lmdocml.ln
   
 dist: mdocml.tgz  dist: mdocml.tgz
   
 www: $(HTML)  www: $(HTML) $(XML)
   
 regress: mdocml  regress: mdocml
         @for f in $(FAIL); do \          @for f in $(FAIL); do \
Line 65  clean:
Line 71  clean:
 index.html: index.7 mdocml.css  index.html: index.7 mdocml.css
         ./mdocml -W -fhtml -e -o $@ index.7          ./mdocml -W -fhtml -e -o $@ index.7
   
   index.xml: index.7 mdocml.css
           ./mdocml -W -fhtml -e -o $@ index.7
   
 mdocml.html: mdocml.1 mdocml.css  mdocml.html: mdocml.1 mdocml.css
         ./mdocml -W -fhtml -e -o $@ mdocml.1          ./mdocml -W -fhtml -e -o $@ mdocml.1
   
 install-www: www dist  install-www: www dist
         install -m 0644 mdocml.tgz $(PREFIX)/          install -m 0644 mdocml.tgz $(PREFIX)/mdocml-$(VERSION).tgz
         install -m 0644 $(HTML) $(PREFIX)/          ( cd $(PREFIX)/ && ln -sf mdocml-$(VERSION).tgz mdocml.tgz )
           install -m 0644 $(HTML) $(XML) $(PREFIX)/
   
 mdocml.tgz: $(INSTALL)  mdocml.tgz: $(INSTALL)
         mkdir -p .dist/mdocml/mdocml-$(VERSION)/          mkdir -p .dist/mdocml/mdocml-$(VERSION)/

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32

CVSweb