[PRELIMINARY ROUND 1]
[progcomp2012.git] / agents / peternlewis / Makefile
diff --git a/agents/peternlewis/Makefile b/agents/peternlewis/Makefile
new file mode 100644 (file)
index 0000000..e7e0bc1
--- /dev/null
@@ -0,0 +1,25 @@
+#Makefile for basic_cpp
+# Sample C++ Stratego AI
+# UCC Programming Competition 2012 
+
+CPP = g++ -Wall -pedantic -g
+OBJ = peternlewis.o
+
+BIN = peternlewis
+
+$(BIN) : $(OBJ) 
+       $(CPP) -o $(BIN) $(OBJ)
+
+%.o : %.cpp %.h
+       $(CPP) -c $<
+
+clean :
+       $(RM) $(BIN) $(OBJ) $(LINKOBJ)
+
+#Cleans up all backup files
+clean_full: 
+       $(RM) $(BIN) $(OBJ) $(LINKOBJ)
+       $(RM) *.*~
+       $(RM) *~
+
+

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