aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3e0c0ee9b3874d317c5a42d3b026765ceb25f0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS=-O4 -Wall
LDLIBS=-lm -lgsl -lgslcblas

all: test

calculate_limits: calculate_limits.c

solid_angle.o: solid_angle.c

test: test.c solid_angle.c refractive_index.c muon.c

clean:
	rm *.o calculate_limits test

.PHONY: clean