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

File: [cvsweb.bsd.lv] / texi2mdoc / Makefile (download)

Revision 1.3, Thu Feb 19 15:34:20 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.2: +9 -0 lines

Add @multitable support.

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