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

Annotation of texi2mdoc/Makefile, Revision 1.3

1.2       kristaps    1: CFLAGS += -g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
                      2:
                      3: all: texi2mdoc
                      4:
1.3     ! kristaps    5: www: index.html texi2mdoc.1.html
        !             6:
1.2       kristaps    7: afl: afl/texi2mdoc
1.1       kristaps    8:
                      9: texi2mdoc: main.o
                     10:        $(CC) -o $@ main.o
                     11:
1.2       kristaps   12: afl/texi2mdoc: main.c
                     13:        afl-clang -o $@ main.c
                     14:
1.3     ! kristaps   15: index.html: index.xml
        !            16:        cp index.xml $@
        !            17:
        !            18: texi2mdoc.1.html: texi2mdoc.1
        !            19:        mandoc -Thtml $< >$@
        !            20:
1.1       kristaps   21: clean:
1.2       kristaps   22:        rm -f texi2mdoc main.o afl/texi2mdoc
                     23:        rm -rf texi2mdoc.dSYM afl/texi2mdoc.dSYM
1.3     ! kristaps   24:        rm -f index.html texi2mdoc.1.html

CVSweb