X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=judge%2Fmanager%2FMakefile;h=e06e1810c2667599266dea70288d75c2ad8643b6;hp=67ffda9f4f89e93536029ffa8f0f04f5888f5a2c;hb=df9b2d14b2e4e5ea2e99614e44151295bcf4956c;hpb=e1153eebe8cfd0c881cef2ff8fca63f130e736b3;ds=sidebyside diff --git a/judge/manager/Makefile b/judge/manager/Makefile index 67ffda9..e06e181 100644 --- a/judge/manager/Makefile +++ b/judge/manager/Makefile @@ -1,17 +1,20 @@ #Makefile for Stratego #Use this to build with graphics -CPP = g++ -Wall -pedantic -lSDL -lGL -lpthread -g +LIBRARIES = -lSDL -lGL -lpthread #Use this to build without graphics -#CPP = g++ -Wall -pedantic -lpthread -g -OBJ = main.o controller.o ai_controller.o human_controller.o program.o thread_util.o stratego.o graphics.o game.o +#LIBRARIES = -lpthread +#Use this on Mac OSX (Thanks spartan) +#LIBRARIES = -I/opt/local/include/ -L/opt/local/lib/ -lSDL -framework OpenGL -lpthread +CPP = g++ -Wall -pedantic -g +OBJ = main.o controller.o network_controller.o ai_controller.o human_controller.o program.o network.o thread_util.o stratego.o graphics.o game.o BIN = stratego $(BIN) : $(OBJ) - $(CPP) -o $(BIN) $(OBJ) + $(CPP) -o $(BIN) $(OBJ) $(LIBRARIES)