troff: put a newline after each block
[ctxt.git] / Makefile
blob20e6a373b7f9a0d28699e988a204a3599158c8c7
1 CC = cc
2 CFLAGS = -Wall -Os
3 LDFLAGS =
5 all: ctxt
6 .c.o:
7 $(CC) -c $(CFLAGS) $<
8 ctxt: ctxt.o util.o txt.o doc.o fmt.o latex.o html.o troff.o
9 $(CC) $(LDFLAGS) -o $@ $^
10 clean:
11 rm -f *.o ctxt