X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2FMakefile;h=929b40d43b1ef588e18f33dabf258e3a80cab28e;hb=83979aa4978c462b7479601567a874969762c07d;hp=72d37de2f3bef8afd3f1559f7ba5740ab78b1a22;hpb=28f8552a303697ce72687fb6fc09d4ab70f26465;p=matches%2FMCTX3420.git diff --git a/server/Makefile b/server/Makefile index 72d37de..929b40d 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,18 +1,15 @@ # Makefile for server software CXX = gcc -FLAGS = -std=c99 -Wall -Werror -pedantic -g -LIB = -lfcgi -lssl -lcrypto -lpthread -lm -OBJ = log.o control.o sensor.o fastcgi.o thread.o main.o +FLAGS = -std=c99 -Wall -pedantic -g -I/usr/include/opencv -I/usr/include/opencv2/highgui -L/usr/lib +LIB = -lfcgi -lssl -lcrypto -lpthread -lm -lopencv_highgui -lopencv_core -lopencv_ml -lopencv_imgproc +OBJ = log.o control.o data.o fastcgi.o main.o sensor.o actuator.o image.o bbb_pin.o bbb_pin_defines.o pin_test.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 - $(BIN) : $(OBJ) $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)