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

Diff for /mandoc/Makefile between version 1.49 and 1.73

version 1.49, 2008/12/10 17:40:56 version 1.73, 2009/02/21 14:56:57
Line 1 
Line 1 
 VERSION = 1.0.3  VERSION = 1.2.0
   
 # FIXME  CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
 CFLAGS += -W -Wall -Wno-unused-parameter -g -DDEBUG  
   
 LNS     = mdocml.ln html.ln xml.ln libmdocml.ln roff.ln ml.ln mlg.ln \  LIBLNS  = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \
           compat.ln tokens.ln literals.ln tags.ln noop.ln            validate.ln action.ln
   
 LLNS    = llib-lmdocml.ln  BINLNS  = mdocml.ln term.ln tree.ln
   
 LIBS    = libmdocml.a  LNS     = $(LIBLNS) $(BINLNS)
   
 OBJS    = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \  LLNS    = llib-llibmdoc.ln llib-lmdocml.ln
           compat.o tokens.o literals.o tags.o noop.o  
   
 SRCS    = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \  LIBS    = libmdoc.a
           compat.c tokens.c literals.c tags.c noop.c  
   
 HEADS   = libmdocml.h private.h ml.h roff.h html.h  LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \
             validate.o action.o
   
 MANS    = mdocml.1 index.7  BINOBJS = mdocml.o term.o tree.o
   
 HTML    = index.html mdocml.html  OBJS    = $(LIBOBJS) $(BINOBJS)
   
 XML     = index.xml  SRCS    = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c argv.c \
             validate.c action.c
   
 TEXT    = index.txt  HEADS   = mdoc.h private.h
   
 CLEAN   = mdocml $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) $(XML) $(TEXT) \  MANS    = mdocml.1 mdoc.3
           mdocml-$(VERSION).tar.gz mdocml-port-$(VERSION).tar.gz  
   
 INSTALL = Makefile $(HEADS) $(SRCS) $(MANS) mdocml.css  BINS    = mdocml
   
 FAIL    = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \  CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)
           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.66 test.69 test.70  
   
 SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \  INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS)
           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.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.54 test.55 test.56 test.57 test.58 test.59 test.60 \  
           test.62 test.63 test.67 test.68 test.71 test.72 test.73  
   
 all: mdocml  FAIL    = regress/test.empty \
             regress/test.prologue.00 \
             regress/test.prologue.01 \
             regress/test.prologue.02 \
             regress/test.prologue.03 \
             regress/test.prologue.04 \
             regress/test.prologue.06 \
             regress/test.prologue.13 \
             regress/test.prologue.15 \
             regress/test.prologue.16 \
             regress/test.prologue.18 \
             regress/test.prologue.19 \
             regress/test.prologue.21 \
             regress/test.prologue.22 \
             regress/test.prologue.23 \
             regress/test.prologue.24 \
             regress/test.prologue.25 \
             regress/test.prologue.26 \
             regress/test.prologue.27 \
             regress/test.prologue.28 \
             regress/test.prologue.29 \
             regress/test.prologue.30 \
             regress/test.prologue.31 \
             regress/test.prologue.32 \
             regress/test.prologue.33 \
             regress/test.sh.01 \
             regress/test.sh.02 \
             regress/test.sh.03 \
             regress/test.name.01 \
             regress/test.name.02 \
             regress/test.name.03
   
 lint: llib-lmdocml.ln  SUCCEED = regress/test.prologue.05 \
             regress/test.prologue.07 \
             regress/test.prologue.08 \
             regress/test.prologue.09 \
             regress/test.prologue.10 \
             regress/test.prologue.11 \
             regress/test.prologue.12 \
             regress/test.prologue.14 \
             regress/test.prologue.17 \
             regress/test.prologue.20 \
             regress/test.sh.00 \
             regress/test.name.00 \
             regress/test.list.00 \
             regress/test.list.01 \
             regress/test.list.02 \
             regress/test.list.03 \
             regress/test.list.04 \
             regress/test.list.05 \
             regress/test.list.06
   
 dist: mdocml-$(VERSION).tar.gz mdocml-port-$(VERSION).tar.gz  all:    $(BINS)
   
 www: all $(HTML) $(XML) $(TEXT)  lint:   $(LLNS)
   
 regress: mdocml  
         @for f in $(FAIL); do \  
                 echo "./mdocml $$f" ; \  
                 ./mdocml -v $$f 1>/dev/null 2>/dev/null || continue ; \  
         done  
         @for f in $(SUCCEED); do \  
                 echo "./mdocml $$f" ; \  
                 ./mdocml -v $$f 1>/dev/null || exit 1 ; \  
         done  
   
 mdocml: mdocml.o libmdocml.a  
         $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a  
   
 clean:  clean:
         rm -f $(CLEAN)          rm -f $(CLEAN)
   
 index.html: index.7 mdocml.css  dist:   mdocml-$(VERSION).tar.gz
         ./mdocml -fhtml -Wall -e -o $@ index.7  
   
 index.xml: index.7 mdocml.css  port:   mdocml-oport-$(VERSION).tar.gz
         ./mdocml -fxml -Wall -o $@ index.7  
   
 index.txt: index.7  regress:: mdocml
         cp -f index.7 index.txt          @for f in $(FAIL); do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f 2>/dev/null || continue ; exit 1 ; done
           @for f in $(SUCCEED); do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f 2>/dev/null || exit 1 ; done
   
 mdocml.html: mdocml.1 mdocml.css  
         ./mdocml -Wall -fhtml -e -o $@ mdocml.1  
   
 install:  install:
         mkdir -p $(PREFIX)/bin/          mkdir -p $(PREFIX)/bin/
         install -m 0755 mdocml $(PREFIX)/bin/          mkdir -p $(PREFIX)/include/mdoc/
           mkdir -p $(PREFIX)/lib/
         mkdir -p $(PREFIX)/man/man1/          mkdir -p $(PREFIX)/man/man1/
           install -m 0755 mdocml $(PREFIX)/bin/
         install -m 0444 mdocml.1 $(PREFIX)/man/man1/          install -m 0444 mdocml.1 $(PREFIX)/man/man1/
         mkdir -p $(PREFIX)/share/mdocml/          install -m 0444 mdoc.3 $(PREFIX)/man/man3/
         install -m 0444 mdocml.css $(PREFIX)/share/mdocml/          install -m 0644 libmdoc.a $(PREFIX)/lib/
           install -m 0444 mdoc.h $(PREFIX)/include/
   
   install-dist: mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz
           install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/
           install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/mdocml.tar.gz
           install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/
           install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/mdocml-oport.tar.gz
   
 uninstall:  uninstall:
         rm -f $(PREFIX)/bin/mdocml          rm -f $(PREFIX)/bin/mdocml
         rm -f $(PREFIX)/man/man1/mdocml.1          rm -f $(PREFIX)/man/man1/mdocml.1
         rm -f $(PREFIX)/share/mdocml/mdocml.css          rm -f $(PREFIX)/man/man3/mdoc.3
           rm -f $(PREFIX)/lib/libmdoc.a
           rm -f $(PREFIX)/include/mdoc.h
   
 install-www: www dist  macro.ln: macro.c private.h
         install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/  
         install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/mdocml.tar.gz  
         install -m 0644 mdocml-port-$(VERSION).tar.gz $(PREFIX)/  
         install -m 0644 mdocml-port-$(VERSION).tar.gz $(PREFIX)/mdocml-port.tar.gz  
         install -m 0644 $(HTML) $(XML) $(TEXT) $(PREFIX)/  
   
 mdocml-$(VERSION).tar.gz: $(INSTALL)  macro.o: macro.c private.h
         mkdir -p .dist/mdocml/mdocml-$(VERSION)/  
         install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/  
         ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )  
         rm -rf .dist/  
   
 mdocml-port-$(VERSION).tar.gz: $(INSTALL)  tree.ln: tree.c mdoc.h
         mkdir -p .dist/mdocml/pkg  
         sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > .dist/mdocml/Makefile  
         md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo  
         rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo  
         sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo  
         install -m 0644 DESCR .dist/mdocml/pkg/DESCR  
         echo @comment $$OpenBSD$$ > .dist/mdocml/pkg/PLIST  
         echo bin/mdocml >> .dist/mdocml/pkg/PLIST  
         echo share/mdocml/mdocml.css >> .dist/mdocml/pkg/PLIST  
         echo @man man/man1/mdocml.1 >> .dist/mdocml/pkg/PLIST  
         ( cd .dist/ && tar zcf ../$@ mdocml/ )  
         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 tags.ln noop.ln  tree.o: tree.c mdoc.h
         $(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 noop.ln  
   
 mdocml.ln: mdocml.c libmdocml.h  term.ln: term.c private.h
   
 mdocml.o: mdocml.c libmdocml.h  term.o: term.c private.h
   
 libmdocml.a: libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o tags.o noop.o  strings.ln: strings.c private.h
         $(AR) rs $@ libmdocml.o html.o xml.o roff.o ml.o mlg.o compat.o tokens.o literals.o tags.o noop.o  
   
 xml.ln: xml.c ml.h  strings.o: strings.c private.h
   
 xml.o: xml.c ml.h  hash.ln: hash.c private.h
   
 html.ln: html.c private.h  hash.o: hash.c private.h
   
 html.o: html.c private.h  mdoc.ln: mdoc.c private.h
   
 tags.ln: tags.c html.h  mdoc.o: mdoc.c private.h
   
 tags.o: tags.c html.h  mdocml.ln: mdocml.c mdoc.h
   
 roff.ln: roff.c private.h  mdocml.o: mdocml.c mdoc.h
   
 roff.o: roff.c private.h  xstd.ln: xstd.c private.h
   
 libmdocml.ln: libmdocml.c private.h  xstd.o: xstd.c private.h
   
 libmdocml.o: libmdocml.c private.h  argv.ln: argv.c private.h
   
 ml.ln: ml.c ml.h  argv.o: argv.c private.h
   
 ml.o: ml.c ml.h  validate.ln: validate.c private.h
   
 mlg.ln: mlg.c ml.h  validate.o: validate.c private.h
   
 mlg.o: mlg.c ml.h  action.ln: action.c private.h
   
 compat.ln: compat.c  action.o: action.c private.h
   
 compat.o: compat.c  private.h: mdoc.h
   
 noop.ln: noop.c private.h  mdocml-oport-$(VERSION).tar.gz: Makefile.port DESCR
           mkdir -p .dist/mdocml/pkg
           sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > .dist/mdocml/Makefile
           md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo
           rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
           sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo
           install -m 0644 DESCR .dist/mdocml/pkg/DESCR
           echo @comment $$OpenBSD$$ > .dist/mdocml/pkg/PLIST
           echo bin/mdocml >> .dist/mdocml/pkg/PLIST
           echo lib/libmdoc.a >> .dist/mdocml/pkg/PLIST
           echo include/mdoc.h >> .dist/mdocml/pkg/PLIST
           echo @man man/man1/mdocml.1 >> .dist/mdocml/pkg/PLIST
           echo @man man/man3/mdoc.3 >> .dist/mdocml/pkg/PLIST
           ( cd .dist/ && tar zcf ../$@ mdocml/ )
           rm -rf .dist/
   
 noop.o: noop.c private.h  mdocml-$(VERSION).tar.gz: $(INSTALL)
           mkdir -p .dist/mdocml/mdocml-$(VERSION)/
           install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/
           ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )
           rm -rf .dist/
   
 html.h: ml.h  llib-llibmdoc.ln: $(LIBLNS)
           $(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS)
   
 ml.h: private.h  llib-lmdocml.ln: $(BINLNS) llib-llibmdoc.ln
           $(LINT) $(LINTFLAGS) -Cmdocml $(BINLNS) llib-llibmdoc.ln
   
 private.h: libmdocml.h  libmdoc.a: $(LIBOBJS)
           $(AR) rs $@ $(LIBOBJS)
   
   mdocml: $(BINOBJS) libmdoc.a
           $(CC) $(CFLAGS) -o $@ $(BINOBJS) libmdoc.a -lcurses
   

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.73

CVSweb