X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2FMakefile;h=0858d7d59062c4cf35fcba929464fdf4567fb5f7;hb=cf310248b767630a93e81f9cd9cd3700d0d45cb5;hp=95cd03e33f6742d76b147e95ee62508c0864e19f;hpb=259624013535f3c93315868efb5f6f611ba88470;p=matches%2FMCTX3420.git diff --git a/server/Makefile b/server/Makefile index 95cd03e..0858d7d 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,12 +1,13 @@ -# Makefile for rpi side server +# Makefile for server software CXX = gcc FLAGS = -std=c99 -Wall -Werror -pedantic -g -LIB = -lpthread -OBJ = log.o sensor.o test_request.o main.o +LIB = -lpthread -lfcgi -lssl -lcrypto +OBJ = log.o control.o sensor.o fastcgi.o thread.o main.o RM = rm -f BIN = server + $(BIN) : $(OBJ) $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)