major cleanup and improved block handling
[ctxt.git] / Makefile
blob09a79fe861b5f496f9fd1272745af63fbd0a6f87
1 CC = cc
2 CFLAGS = -Wall -O2
3 LDFLAGS =
5 all: ctxt
6 .c.o:
7 $(CC) -c $(CFLAGS) $<
8 ctxt: ctxt.o txt.o doc.o fmt.o latex.o html.o troff.o
9 $(CC) $(LDFLAGS) -o $@ $^
10 clean:
11 rm -f *.o ctxt