15 lines
311 B
Makefile
Raw Normal View History

2016-06-09 21:11:20 +02:00
all: thickenings
thickenings: thickenings.o coxeter.o
2016-07-07 12:35:23 +02:00
gcc -O3 -o thickenings thickenings.o coxeter.o -lgsl -lcblas
2016-06-09 21:11:20 +02:00
thickenings.o: thickenings.c coxeter.h
2016-07-07 12:35:23 +02:00
gcc -O3 -c thickenings.c -std=gnu99
2016-06-09 21:11:20 +02:00
coxeter.o: coxeter.c coxeter.h
2016-07-07 12:35:23 +02:00
gcc -O3 -c coxeter.c -std=gnu99
2016-06-09 21:11:20 +02:00
clean:
rm -f thickenings thickenings.o coxeter.o