all: thickenings thickenings: thickenings.o coxeter.o gcc -O3 -o thickenings thickenings.o coxeter.o -lgsl -lcblas thickenings.o: thickenings.c coxeter.h gcc -O3 -c thickenings.c -std=gnu99 coxeter.o: coxeter.c coxeter.h gcc -O3 -c coxeter.c -std=gnu99 clean: rm -f thickenings thickenings.o coxeter.o