From 41bb73186e41a5601407a4d39bfd8c6817c02d74 Mon Sep 17 00:00:00 2001 From: Sam Moore Date: Thu, 12 Sep 2013 13:16:47 +0800 Subject: [PATCH] Get rid of OpenCV for now (Won't fit on BBB SD card) --- server/Makefile | 6 +++--- server/run.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/server/Makefile b/server/Makefile index 72d37de..b674ab0 100644 --- a/server/Makefile +++ b/server/Makefile @@ -6,12 +6,12 @@ OBJ = log.o control.o sensor.o fastcgi.o thread.o main.o RM = rm -f BIN = server -BIN2 = stream +#BIN2 = stream all : $(BIN) $(BIN2) -stream : stream.c - $(CXX) -o stream stream.c -I/usr/include/opencv -I/usr/include/opencv2/highgui -L/usr/lib -lopencv_highgui -lopencv_core -lopencv_ml -lopencv_imgproc -lm +#stream : stream.c +# $(CXX) -o stream stream.c -I/usr/include/opencv -I/usr/include/opencv2/highgui -L/usr/lib -lopencv_highgui -lopencv_core -lopencv_ml -lopencv_imgproc -lm $(BIN) : $(OBJ) diff --git a/server/run.sh b/server/run.sh index a776cbd..aafc5d1 100755 --- a/server/run.sh +++ b/server/run.sh @@ -2,5 +2,5 @@ # Use this to quickly test run the server in valgrind #spawn-fcgi -p9005 -n ./valgrind.sh # Use this to run the server normally -./stream & +#./stream & spawn-fcgi -p9005 -n ./server -- 2.20.1