.c.o:
	gcc -g -c $< -o $@

OBJS= \
 tab-basic.o \
 tab-db.o \
 tab-io.o \
 tab-list-std.o \
 tab-list-match.o \
 tab-stdize.o \
 tab-sum.o \
 avltree.o

rel8: rel8.o tableaux.a
	gcc rel8.o tableaux.a -o rel8

tableaux.a: $(OBJS)
	rm -f tableaux.a
	ar -r tableaux.a $(OBJS)

