aboutsummaryrefslogtreecommitdiff
path: root/tbl/Makefile
blob: f69c0a965916fcbac7f5d29c2b7a12ab9d8ccd9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS = -Wall -O2
LDFLAGS =

OBJS = t8.o t4.o t6.o tu.o t5.o t7.o tv.o tg.o t3.o tb.o tt.o t9.o t1.o \
	tf.o tc.o ti.o tm.o t0.o tr.o te.o ts.o t2.o

all: tbl
%.o: %.c
	$(CC) -c $(CFLAGS) $<
tbl: $(OBJS)
	$(CC) -o $@ $(OBJS) $(LDFLAGS)

clean:
	rm -f *.o tbl