html: add html output format
[ctxt.git] / Makefile
blobc44e8fccfcf4361686090dbff6e72340655a28d2
1 CC = cc
2 CFLAGS = -std=c99 -pedantic -Wall -O2
3 LDFLAGS =
5 all: ctxt
6 .c.o:
7 $(CC) -c $(CFLAGS) $<
8 ctxt: ctxt.o util.o txt.o fmt.o tex.o html.o
9 $(CC) $(LDFLAGS) -o $@ $^
10 clean:
11 rm -f *.o ctxt
12 ctags:
13 ctags *.[hc]