aboutsummaryrefslogtreecommitdiff
path: root/tools/lighthousefind/Makefile
blob: cb073d9d51a26b4776cf953dfdab3053f384669b (plain)
1
2
3
4
5
6
7
8
9
10
all : lighthousefind

CFLAGS:=-g -O4 -DUSE_DOUBLE -I../../redist -flto
LDFLAGS:=$(CFLAGS) -lm 

lighthousefind : lighthousefind.o ../../redist/linmath.c
	gcc -o $@ $^  $(LDFLAGS)

clean :
	rm -rf *.o *~ lighthousefind