From 7dac5c4184ce3bdc1e42377c675184c9df979180 Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Thu, 22 Mar 2018 02:15:40 +0000 Subject: Add orangepitest and fbstream! --- tools/orangepitest/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/orangepitest/Makefile (limited to 'tools/orangepitest/Makefile') diff --git a/tools/orangepitest/Makefile b/tools/orangepitest/Makefile new file mode 100644 index 0000000..3638af7 --- /dev/null +++ b/tools/orangepitest/Makefile @@ -0,0 +1,16 @@ +all : orangepitest + +SRT:=../.. + +RAWDRAWS:=$(SRT)/redist/CNFGFunctions.c $(SRT)/redist/CNFGEGLDriver.c $(SRT)/redist/CNFG3D.c $(SRT)/redist/os_generic.c +LIBSURVIVE:=$(SRT)/lib/libsurvive.so + +CFLAGS:=-I$(SRT)/redist -I$(SRT)/include -O3 -DFLT=double -DUSE_DOUBLE +LDFLAGS:=-lm -lpthread -lMali -llapacke -lcblas + +orangepitest : orangepitest.c $(LIBSURVIVE) $(RAWDRAWS) + gcc $(CFLAGS) -o $@ $^ $(LDFLAGS) + +clean : + rm -rf orangepitest + -- cgit v1.3.1