about summary refs log tree commit diff
path: root/Makefile
blob: 28c5ad93da63390d5c954b97c8991acd9acd3410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
OBJS += cccl.o
OBJS += main.o
OBJS += parser.o
OBJS += readfile.o
OBJS += tokenizer.o

RM ?= rm -f


all: 3cl

3cl: ${OBJS}
	${CC} ${LDFLAGS} -o 3cl ${OBJS} ${LDLIBS}

clean:
	${RM} ${OBJS} 3cl

README: README.7
	mandoc -Tascii README.7 | col -b > README