diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ -CFLAGS=-O4 +CFLAGS=-O4 -Wall LDLIBS=-lm -lgsl -lgslcblas +all: test + calculate_limits: calculate_limits.c solid_angle.o: solid_angle.c @@ -8,6 +10,6 @@ solid_angle.o: solid_angle.c test: test.c solid_angle.c refractive_index.c muon.c clean: - rm calculate_limits + rm *.o calculate_limits test .PHONY: clean |