aboutsummaryrefslogtreecommitdiff
path: root/tools/showreproject/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/showreproject/Makefile')
-rw-r--r--tools/showreproject/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/showreproject/Makefile b/tools/showreproject/Makefile
new file mode 100644
index 0000000..f6d5925
--- /dev/null
+++ b/tools/showreproject/Makefile
@@ -0,0 +1,16 @@
+all : showreproject
+
+SRT:=../..
+
+LIBSURVIVE:=$(SRT)/lib/libsurvive.so
+
+CFLAGS:=-I$(SRT)/redist -I$(SRT)/include -O0 -g -DFLT=double -DUSE_DOUBLE #-fsanitize=address -fsanitize=undefined
+LDFLAGS:=-lm -lpthread -llapacke -lcblas -lopencv_core -lopencv_highgui -lopencv_imgproc -lopencv_imgcodecs
+
+showreproject : showreproject.cc $(LIBSURVIVE)
+ cd ../..;make
+ g++ $(CFLAGS) -o $@ $^ $(LDFLAGS)
+
+clean :
+ rm -rf showreproject
+