HEADERS=triangle.h linalg.h queue.h SPECIAL_OPTIONS=-O0 -g -D_DEBUG #SPECIAL_OPTIONS=-O3 -pg -funroll-loops -fno-inline #SPECIAL_OPTIONS=-O3 -flto -funroll-loops -Winline #SPECIAL_OPTIONS= OPTIONS=-m64 -march=native -mtune=native -std=gnu99 -D_GNU_SOURCE $(SPECIAL_OPTIONS) all: triangle_group element_path limit_set triangle_group: triangle.o linalg.o main.o gcc $(OPTIONS) -o triangle_group triangle.o linalg.o main.o -lm -lgsl -lcblas element_path: element_path.o linalg.o gcc $(OPTIONS) -o element_path element_path.o linalg.o -lm -lgsl -lcblas limit_set: limit_set.o linalg.o triangle.o gcc $(OPTIONS) -o limit_set limit_set.o linalg.o triangle.o -lm -lgsl -lcblas main.o: main.c $(HEADERS) gcc $(OPTIONS) -c main.c element_path.o: element_path.c $(HEADERS) gcc $(OPTIONS) -c element_path.c linalg.o: linalg.c $(HEADERS) gcc $(OPTIONS) -c linalg.c triangle.o: triangle.c $(HEADERS) gcc $(OPTIONS) -c triangle.c limit_set.o: limit_set.c $(HEADERS) gcc $(OPTIONS) -c limit_set.c clean: rm -f triangle_group element_path limit_set triangle.o linalg.o main.o element_path.o limit_set.o