enumerate-balanced-ideals/Makefile

15 lines
311 B
Makefile
Raw Normal View History

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