blob: 0e6877680cc74ccd828bc211e8fca1d6e2a21325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CFLAGS=-O4
LDLIBS=-lm -lgsl -lgslcblas
calculate_limits: calculate_limits.c
solid_angle.o: solid_angle.c
test: test.c solid_angle.c refractive_index.c muon.c
clean:
rm calculate_limits
.PHONY: clean
|