aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-03-17 20:20:47 -0400
committercnlohr <lohr85@gmail.com>2018-03-17 20:20:47 -0400
commitd4466fa46e88d9d146ae3116004f74c9beda50f7 (patch)
tree11e2ef6f12ec8a54f78de7ac7dab5375e8fb21d8
parent022d83320b058656114fa3ce69ca0117cbaef8cd (diff)
downloadlibsurvive-d4466fa46e88d9d146ae3116004f74c9beda50f7.tar.gz
libsurvive-d4466fa46e88d9d146ae3116004f74c9beda50f7.tar.bz2
Make build target for dcl test
-rw-r--r--redist/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/redist/Makefile b/redist/Makefile
index 2aa5ef1..0d74106 100644
--- a/redist/Makefile
+++ b/redist/Makefile
@@ -1,4 +1,4 @@
-all : jsmntest lintest
+all : jsmntest lintest test_dcl
jsmntest : jsmntest.c jsmn.c
gcc -g -O0 -o $@ $^
@@ -6,6 +6,9 @@ jsmntest : jsmntest.c jsmn.c
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