X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=judge%2Fmanager%2FMakefile;h=e06e1810c2667599266dea70288d75c2ad8643b6;hp=6a359506010ef4e28aa7ead295eaea77fbca056a;hb=341297b4dce9528d54fe9dceeff0d6dc33f70abe;hpb=1dc2550dc93d6b0ab2cde1cd2fc76a2cf45faf21 diff --git a/judge/manager/Makefile b/judge/manager/Makefile index 6a35950..e06e181 100644 --- a/judge/manager/Makefile +++ b/judge/manager/Makefile @@ -1,11 +1,13 @@ #Makefile for Stratego #Use this to build with graphics -#LIBRARIES = -lSDL -lGL -lpthread +LIBRARIES = -lSDL -lGL -lpthread #Use this to build without graphics -LIBRARIES = -lpthread +#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 ai_controller.o human_controller.o program.o thread_util.o stratego.o graphics.o game.o +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