X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2FMakefile;h=0858d7d59062c4cf35fcba929464fdf4567fb5f7;hb=075b45a5a7c8bb6262521cd66900c9851e633743;hp=009128b14550da109e46057c8a0ee9dbf1f8ae27;hpb=0b95dfaf594f4e6866ff8e18040c62382cad7d08;p=matches%2FMCTX3420.git diff --git a/server/Makefile b/server/Makefile index 009128b..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 query.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)