aboutsummaryrefslogtreecommitdiff
path: root/redist/Makefile
blob: 0d7410676348fed10e192a5d1a7074ba1d6b2cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all : jsmntest lintest test_dcl

jsmntest : jsmntest.c jsmn.c
	gcc -g -O0 -o $@ $^

lintest : lintest.c linmath.c linmath.h
	gcc -g -O0 -o $@ $^ -lm

test_dcl : test_dcl.c dclhelpers.c minimal_opencv.c ../src/epnp/epnp.c
	gcc -o $@ $^  os_generic.c -DFLT=double -lpthread -lcblas -lm -llapacke

clean :
	rm -rf *.o *~ jsmntest lintest