First actual commit
[progcomp2012.git] / manager / Makefile
diff --git a/manager/Makefile b/manager/Makefile
new file mode 100644 (file)
index 0000000..7d81a98
--- /dev/null
@@ -0,0 +1,27 @@
+#Makefile for Stratego
+
+CPP = g++ -Wall -pedantic -lSDL -lGL  -g
+OBJ = main.o controller.o program.o thread_util.o stratego.o graphics.o
+
+BIN = stratego
+
+
+
+$(BIN) : $(OBJ) 
+       $(CPP) -o $(BIN) $(OBJ)
+
+
+
+
+%.o : %.cpp %.h
+       $(CPP) -c $<
+
+clean :
+       $(RM) $(BIN) $(OBJ) $(LINKOBJ)
+
+clean_full: #cleans up all backup files
+       $(RM) $(BIN) $(OBJ) $(LINKOBJ)
+       $(RM) *.*~
+       $(RM) *~
+
+

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