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

Diff for /texi2mdoc/Makefile between version 1.3 and 1.4

version 1.3, 2015/02/19 15:34:20 version 1.4, 2015/02/20 09:58:50
Line 1 
Line 1 
 CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
   OBJS = main.o util.o
   SRCS = main.c util.c
   VERSIONS = version_0_1_1.xml
   
 all: texi2mdoc  all: texi2mdoc
   
Line 6  www: index.html texi2mdoc.1.html
Line 9  www: index.html texi2mdoc.1.html
   
 afl: afl/texi2mdoc  afl: afl/texi2mdoc
   
 texi2mdoc: main.o  texi2mdoc: $(OBJS)
         $(CC) -o $@ main.o          $(CC) -o $@ $(OBJS)
   
 afl/texi2mdoc: main.c  $(OBJS): extern.h
         afl-clang -o $@ main.c  
   
 index.html: index.xml  afl/texi2mdoc: extern.h $(SRCS)
         cp index.xml $@          afl-clang -o $@ $(SRCS)
   
   index.html: index.xml $(VERSIONS)
           sblg -o $@ -t index.xml $(VERSIONS)
   
 texi2mdoc.1.html: texi2mdoc.1  texi2mdoc.1.html: texi2mdoc.1
         mandoc -Thtml $< >$@          mandoc -Thtml $< >$@
   
 clean:  clean:
         rm -f texi2mdoc main.o afl/texi2mdoc          rm -f $(OBJS)
           rm -f texi2mdoc afl/texi2mdoc
         rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM          rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM
         rm -f index.html texi2mdoc.1.html          rm -f index.html texi2mdoc.1.html

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb