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

Diff for /mandoc/Makefile between version 1.16 and 1.59

version 1.16, 2008/12/01 16:01:28 version 1.59, 2009/01/17 16:47:02
Line 1 
Line 1 
 CFLAGS += -W -Wall -Wno-unused-parameter -g  VERSION = 1.1.0
   
 LINTFLAGS += -c -e -f -u  CFLAGS += -W -Wall -Wno-unused-parameter -g
   
 LNS     = mdocml.ln html4_strict.ln xml.ln libmdocml.ln roff.ln  LNS     = macro.ln mdoc.ln mdocml.ln hash.ln strings.ln xstd.ln argv.ln validate.ln action.ln tree.ln
   
 LLNS    = llib-lmdocml.ln  LLNS    = llib-llibmdoc.ln llib-lmdocml.ln
   
 LIBS    = libmdocml.a  LIBS    = libmdoc.a
   
 OBJS    = mdocml.o html4_strict.o xml.o libmdocml.o roff.o  OBJS    = macro.o mdoc.o mdocml.o hash.o strings.o xstd.o argv.o validate.o action.o tree.o
   
 SRCS    = mdocml.c html4_strict.c xml.c libmdocml.c roff.c  SRCS    = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c argv.c validate.c action.c tree.c
   
 HEADS   = libmdocml.h private.h  HEADS   = mdoc.h
   
 MANS    = mdocml.1  BINS    = mdocml
   
 CLEAN   = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS)  CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)
   
 INSTALL = Makefile $(HEADS) $(SRCS) $(MANS)  SUCCESS = test.1 test.7 test.8 test.9 test.11 test.11 test.12 test.16 \
             test.17 test.19 test.20 test.21 test.23 test.25 test.27     \
             test.28 test.29 test.31 test.32 test.33 test.34 test.35     \
             test.38 test.39 test.40 test.41 test.42 test.43 test.44     \
             test.45 test.46 test.47 test.49 test.51 test.52 test.53     \
             test.54 test.55 test.56 test.57 test.58 test.59 test.60     \
             test.62 test.67 test.68 test.71 test.72 test.73 test.74     \
             test.75
   
 FAIL    = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \  FAIL    = test.0 test.2 test.3 test.4 test.5 test.6 test.13 test.14   \
           test.15 test.20 test.22 test.24 test.26 test.27 test.30            test.15 test.18 test.22 test.24 test.26 test.30 test.36     \
             test.37 test.48 test.50 test.61 test.63 test.64 test.65     \
             test.66 test.69 test.70
   
 SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \  all:    $(BINS)
           test.14 test.16 test.17 test.18 test.19 test.21 test.23 \  
           test.25 test.28 test.29  
   
   lint:   $(LLNS)
   
 all: mdocml  mdocml: mdocml.o tree.o libmdoc.a
           $(CC) $(CFLAGS) -o $@ mdocml.o tree.o libmdoc.a
   
 lint: llib-lmdocml.ln  clean:
           rm -f $(CLEAN)
   
 dist: mdocml.tgz  regress: mdocml $(SUCCESS) $(FAIL)
           @for f in $(SUCCESS) ; do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f || exit 1 ; \
           done
   
 regress: mdocml  llib-llibmdoc.ln: macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln validate.ln action.ln
         @for f in $(FAIL); do ./mdocml $$f 1>/dev/null 2>/dev/null || continue ; done          $(LINT) $(LINTFLAGS) -Clibmdoc mdoc.ln macro.ln hash.ln strings.ln xstd.ln argv.ln validate.ln action.ln
         @for f in $(SUCCEED); do ./mdocml $$f 1>/dev/null || exit 1 ; done  
   
 mdocml: mdocml.o libmdocml.a  llib-lmdocml.ln: mdocml.ln tree.ln llib-llibmdoc.ln
         $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a          $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln tree.ln llib-llibmdoc.ln
   
 clean:  macro.ln: macro.c private.h
         rm -f $(CLEAN)  
   
 mdocml.tgz: $(INSTALL)  macro.o: macro.c private.h
         mkdir -p .dist/mdocml/  
         install -m 0644 $(INSTALL) .dist/mdocml/  
         ( cd .dist/ && tar zcf ../mdocml.tgz mdocml/ )  
         rm -rf .dist/  
   
 llib-lmdocml.ln: mdocml.ln libmdocml.ln html4_strict.ln xml.ln roff.ln  strings.ln: strings.c private.h
         $(LINT) $(LINTFLAGS) -Cmdocml mdocml.ln libmdocml.ln html4_strict.ln xml.ln roff.ln  
   
 mdocml.ln: mdocml.c libmdocml.h  strings.o: strings.c private.h
   
 mdocml.o: mdocml.c libmdocml.h  tree.ln: tree.c mdoc.h
   
 libmdocml.a: libmdocml.o html4_strict.o xml.o roff.o  tree.o: tree.c mdoc.h
         $(AR) rs $@ libmdocml.o html4_strict.o xml.o roff.o  
   
 xml.ln: xml.c private.h libmdocml.h  hash.ln: hash.c private.h
   
 xml.o: xml.c private.h libmdocml.h  hash.o: hash.c private.h
   
 html4_strict.ln: html4_strict.c private.h libmdocml.h  mdoc.ln: mdoc.c private.h
   
 html4_strict.o: html4_strict.c private.h libmdocml.h  mdoc.o: mdoc.c private.h
   
 roff.ln: roff.c private.h libmdocml.h  mdocml.ln: mdocml.c mdoc.h
   
 roff.o: roff.c private.h libmdocml.h  mdocml.o: mdocml.c mdoc.h
   
 libmdocml.ln: libmdocml.c private.h libmdocml.h  xstd.ln: xstd.c private.h
   
 libmdocml.o: libmdocml.c private.h libmdocml.h  xstd.o: xstd.c private.h
   
   argv.ln: argv.c private.h
   
   argv.o: argv.c private.h
   
   validate.ln: validate.c private.h
   
   validate.o: validate.c private.h
   
   action.ln: action.c private.h
   
   action.o: action.c private.h
   
   private.h: mdoc.h
   
   libmdoc.a: macro.o mdoc.o hash.o strings.o xstd.o argv.o validate.o action.o
           $(AR) rs $@ macro.o mdoc.o hash.o strings.o xstd.o argv.o validate.o action.o
   

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.59

CVSweb