default: run

OBJECTS= GapPresentation.o group_elt.o interpret.o polynomial.o \
	presentation.o test.o utilities.o Mpresentation.o

run       : $(OBJECTS)
	cc -o run $(OBJECTS)

GapPresentation.o: GapPresentation.c
	cc -c GapPresentation.c
Mpresentation.o: Mpresentation.c
	cc -c Mpresentation.c
group_elt.o: group_elt.c
	cc -c group_elt.c
interpret.o: interpret.c
	cc -c interpret.c
polynomial.o: polynomial.c
	cc -c polynomial.c
presentation.o: presentation.c
	cc -c presentation.c
test.o: test.c
	cc -c test.c
utilities.o: utilities.c
	cc -c utilities.c

