aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2018-07-05 16:43:24 -0400
committertlatorre <tlatorre@uchicago.edu>2018-07-05 16:43:24 -0400
commita752ad53b2712fb58bed611ef9297cb822e1bb20 (patch)
tree46ad46dec00f4aa3dfe81b9cb13a29a29a6c49d7 /Makefile
parentbb92a32d1770f97ac7503b6c3346bc36081279d9 (diff)
downloadsddm-a752ad53b2712fb58bed611ef9297cb822e1bb20.tar.gz
sddm-a752ad53b2712fb58bed611ef9297cb822e1bb20.tar.bz2
sddm-a752ad53b2712fb58bed611ef9297cb822e1bb20.zip
add a function to compute the energy along a muon track
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