=================================================================== RCS file: /cvs/texi2mdoc/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- texi2mdoc/Makefile 2015/02/18 23:08:16 1.2 +++ texi2mdoc/Makefile 2015/02/19 15:34:20 1.3 @@ -2,6 +2,8 @@ CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused- all: texi2mdoc +www: index.html texi2mdoc.1.html + afl: afl/texi2mdoc texi2mdoc: main.o @@ -10,6 +12,13 @@ texi2mdoc: main.o afl/texi2mdoc: main.c afl-clang -o $@ main.c +index.html: index.xml + cp index.xml $@ + +texi2mdoc.1.html: texi2mdoc.1 + mandoc -Thtml $< >$@ + clean: rm -f texi2mdoc main.o afl/texi2mdoc rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM + rm -f index.html texi2mdoc.1.html