aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0e68776..3e0c0ee 100644
--- a/Makefile
+++ b/Makefile
@@ -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