summary refs log tree commit diff
path: root/Makefile
blob: 808887a1ddd2269ac6eb3318dc5baa24f87014c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
OBJS += compile.o
OBJS += debug.o
OBJS += lex.o
OBJS += main.o
OBJS += parse.o
OBJS += say.o
OBJS += str.o
OBJS += val.o
OBJS += var.o
OBJS += vertex.o

all: thac

thac: ${OBJS}
	${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDLIBS}

${OBJS}: thac.h

clean:
	rm -f thac ${OBJS}