Change FCGI_Authorize* to FCGI_*Control. Add actuator test code.
[matches/MCTX3420.git] / server / Makefile
index f1084af..0858d7d 100644 (file)
@@ -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 control.o sensor.o fastcgi.o thread.o main.o
 RM = rm -f
 
 BIN = server
 
+
 $(BIN) : $(OBJ)
        $(CXX) $(FLAGS) -o $(BIN) $(OBJ) $(LIB)
 

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