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

Annotation of texi2mdoc/Makefile, Revision 1.2

1.2     ! kristaps    1: CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
        !             2:
        !             3: all: texi2mdoc
        !             4:
        !             5: afl: afl/texi2mdoc
1.1       kristaps    6:
                      7: texi2mdoc: main.o
                      8:        $(CC) -o $@ main.o
                      9:
1.2     ! kristaps   10: afl/texi2mdoc: main.c
        !            11:        afl-clang -o $@ main.c
        !            12:
1.1       kristaps   13: clean:
1.2     ! kristaps   14:        rm -f texi2mdoc main.o afl/texi2mdoc
        !            15:        rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM

CVSweb