=================================================================== RCS file: /cvs/texi2mdoc/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- texi2mdoc/Makefile 2015/02/16 22:24:43 1.1 +++ texi2mdoc/Makefile 2015/02/18 23:08:16 1.2 @@ -1,8 +1,15 @@ -CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings +CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings +all: texi2mdoc + +afl: afl/texi2mdoc + texi2mdoc: main.o $(CC) -o $@ main.o +afl/texi2mdoc: main.c + afl-clang -o $@ main.c + clean: - rm -f texi2mdoc main.o - rm -rf texi2mdoc.dSYM + rm -f texi2mdoc main.o afl/texi2mdoc + rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM