Get threads to deal with exit conditions, create timestamps
[matches/MCTX3420.git] / server / Makefile
index 009128b..e85a72e 100644 (file)
@@ -1,12 +1,13 @@
-# Makefile for rpi side server
+# Makefile for server software
 CXX = gcc
 FLAGS = -std=c99 -Wall -Werror -pedantic -g
 CXX = gcc
 FLAGS = -std=c99 -Wall -Werror -pedantic -g
-LIB = -lpthread
-OBJ = log.o sensor.o query.o main.o
+LIB = -lpthread -lfcgi -lssl
+OBJ = log.o sensor.o fastcgi.o thread.o main.o
 RM = rm -f
 
 BIN = server
 
 RM = rm -f
 
 BIN = server
 
+
 $(BIN) : $(OBJ)
        $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)
 
 $(BIN) : $(OBJ)
        $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)
 

UCC git Repository :: git.ucc.asn.au