X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2FMakefile;h=ef834a13cd922047b4a0ae43316cae6cbaf87c54;hb=2b1bc7ec5ad99de2040402d79fd83c69271a6dde;hp=f1084afb6a5e14694138e7cd56b986bba7bac173;hpb=ab0ae45f79caaae86b36f8230f9399138c9e73bc;p=matches%2FMCTX3420.git diff --git a/server/Makefile b/server/Makefile index f1084af..ef834a1 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,12 +1,13 @@ # Makefile for server software CXX = gcc FLAGS = -std=c99 -Wall -Werror -pedantic -g -LIB = -lpthread -lfcgi -lssl -OBJ = log.o sensor.o fastcgi.o main.o +LIB = -lpthread -lfcgi -lssl -lcrypto +OBJ = log.o sensor.o fastcgi.o thread.o main.o RM = rm -f BIN = server + $(BIN) : $(OBJ) $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)