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

Diff for /mandoc/Makefile between version 1.23 and 1.29

version 1.23, 2008/12/04 16:19:52 version 1.29, 2008/12/07 21:30:49
Line 1 
Line 1 
   .SUFFIXES:      .html .7
   
 CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG  CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG
   
 LINTFLAGS += -c -e -f -u  LINTFLAGS += -c -e -f -u
Line 12  OBJS = mdocml.o html.o xml.o libmdocml.o roff.o ml.o m
Line 14  OBJS = mdocml.o html.o xml.o libmdocml.o roff.o ml.o m
   
 SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c compat.c tokens.c  SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c compat.c tokens.c
   
 HEADS   = libmdocml.h private.h  HEADS   = libmdocml.h private.h ml.h roff.h
   
 MANS    = mdocml.1  MANS    = mdocml.1
   
 CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS)  HTML    = index.html
   
   CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML)
   
 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.36 test.37 test.40 test.50
   
 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 \
           test.25 test.28 test.29 test.31 test.32 test.33 test.34 \            test.25 test.28 test.29 test.31 test.32 test.33 test.34 \
           test.35 test.37 test.38 test.39            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
   
   
 all: mdocml  all: mdocml
Line 36  lint: llib-lmdocml.ln
Line 41  lint: llib-lmdocml.ln
   
 dist: mdocml.tgz  dist: mdocml.tgz
   
   www: $(HTML)
   
 regress: mdocml  regress: mdocml
         @for f in $(FAIL); do ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; done          @for f in $(FAIL); do \
         @for f in $(SUCCEED); do ./mdocml $$f 1>/dev/null || exit 1 ; done                  echo "./mdocml $$f" ; \
                   ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; \
           done
           @for f in $(SUCCEED); do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f 1>/dev/null || exit 1 ; \
           done
   
 mdocml: mdocml.o libmdocml.a  mdocml: mdocml.o libmdocml.a
         $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a          $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a
Line 46  mdocml: mdocml.o libmdocml.a
Line 59  mdocml: mdocml.o libmdocml.a
 clean:  clean:
         rm -f $(CLEAN)          rm -f $(CLEAN)
   
   index.html: index.7 mdocml.css
           ./mdocml -W -fhtml -e -o $@ $<
   
 mdocml.tgz: $(INSTALL)  mdocml.tgz: $(INSTALL)
         mkdir -p .dist/mdocml/          mkdir -p .dist/mdocml/
         install -m 0644 $(INSTALL) .dist/mdocml/          install -m 0644 $(INSTALL) .dist/mdocml/
Line 70  html.ln: html.c private.h libmdocml.h
Line 86  html.ln: html.c private.h libmdocml.h
   
 html.o: html.c private.h libmdocml.h  html.o: html.c private.h libmdocml.h
   
 roff.ln: roff.c private.h libmdocml.h  roff.ln: roff.c private.h roff.h libmdocml.h
   
 roff.o: roff.c private.h libmdocml.h  roff.o: roff.c private.h roff.h libmdocml.h
   
 libmdocml.ln: libmdocml.c private.h libmdocml.h  libmdocml.ln: libmdocml.c private.h libmdocml.h
   

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.29

CVSweb