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

Diff for /docbook2mdoc/Makefile between version 1.1 and 1.9

version 1.1, 2014/03/28 02:04:47 version 1.9, 2014/03/30 18:17:21
Line 1 
Line 1 
   VERSION = 0.0.5
 CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
   BUILT = printf.html iovec.html ls.html as.html
   WWWPREFIX = /usr/vhosts/mdocml.bsd.lv/www/htdocs/docbook2mdoc
   
 docbook2mdoc: docbook2mdoc.o  docbook2mdoc: docbook2mdoc.o rules.o
         $(CC) -o $@ docbook2mdoc.o -lexpat          $(CC) -o $@ docbook2mdoc.o rules.o -lexpat
   
   www: index.html docbook2mdoc.1.html docbook2mdoc-$(VERSION).tgz $(BUILT)
   
   installwww: www
           mkdir -p $(WWWPREFIX)/snapshots
           install -m 0444 index.html docbook2mdoc.1.html $(BUILT) $(WWWPREFIX)
           install -m 0444 docbook2mdoc-$(VERSION).tgz $(WWWPREFIX)/snapshots
           install -m 0444 docbook2mdoc-$(VERSION).tgz $(WWWPREFIX)/snapshots/docbook2mdoc.tgz
   
   dist: docbook2mdoc-$(VERSION).tgz
   
   docbook2mdoc-$(VERSION).tgz:
           mkdir -p .dist/docbook2mdoc-$(VERSION)
           install -m 0444 docbook2mdoc.c rules.c extern.h Makefile docbook2mdoc.1 .dist/docbook2mdoc-$(VERSION)
           (cd .dist && tar zcf ../$@ docbook2mdoc-$(VERSION))
           rm -rf .dist
   
   docbook2mdoc.o rules.o: extern.h
   
   index.html: index.xml
           sed "s!@VERSION@!$(VERSION)!g" index.xml >$@
   
   docbook2mdoc.1.html: docbook2mdoc.1
           mandoc -Thtml docbook2mdoc.1 >$@
   
   printf.html:
           ./docbook2mdoc printf.xml | mandoc -Thtml > $@
   
   iovec.html:
           ./docbook2mdoc iovec.xml | mandoc -Thtml > $@
   
   ls.html:
           ./docbook2mdoc ls.xml | mandoc -Thtml > $@
   
   as.html:
           ./docbook2mdoc as.xml | mandoc -Thtml > $@
   
   $(BUILT): docbook2mdoc
   
 clean:  clean:
         rm -f docbook2mdoc docbook2mdoc.o          rm -f docbook2mdoc docbook2mdoc.o rules.o
         rm -rf docbook2mdoc.dSYM          rm -rf docbook2mdoc.dSYM
           rm -f $(BUILT) index.html docbook2mdoc.1.html docbook2mdoc-$(VERSION).tgz

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.9

CVSweb