CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings all: texi2mdoc www: index.html texi2mdoc.1.html afl: afl/texi2mdoc texi2mdoc: main.o $(CC) -o $@ 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