Script to playback and save videos of games
[progcomp2012.git] / agents / peternlewis / Makefile
1 #Makefile for basic_cpp
2 # Sample C++ Stratego AI
3 # UCC Programming Competition 2012 
4
5 CPP = g++ -Wall -pedantic -g
6 OBJ = peternlewis.o
7
8 BIN = peternlewis
9
10 $(BIN) : $(OBJ) 
11         $(CPP) -o $(BIN) $(OBJ)
12
13 %.o : %.cpp %.h
14         $(CPP) -c $<
15
16 clean :
17         $(RM) $(BIN) $(OBJ) $(LINKOBJ)
18
19 #Cleans up all backup files
20 clean_full: 
21         $(RM) $(BIN) $(OBJ) $(LINKOBJ)
22         $(RM) *.*~
23         $(RM) *~
24
25

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