fmt: formula and pre blocks should be raw
[ctxt.git] / Makefile
blob88bf7e56650f5b48b49d02fbaa61aa5cb3ed639f
1 CC = cc
2 CFLAGS = -std=c99 -pedantic -Wall -O2 -g
3 LDFLAGS =
5 all: ctxt
6 .c.o:
7 $(CC) -c $(CFLAGS) $<
8 ctxt: ctxt.o util.o txt.o fmt.o
9 $(CC) $(LDFLAGS) -o $@ $^
10 clean:
11 rm -f *.o ctxt
12 ctags:
13 ctags *.[hc]