X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=samples%2FMakefile;fp=samples%2FMakefile;h=5a05c00051e03d5393235ada30f58f8d1c3e9d14;hp=0000000000000000000000000000000000000000;hb=f91a915d6f64f9d35e867d26e8ddb9c1b1ab0c1e;hpb=b41b9981c516c746a075e96aeeb3d7914617c713 diff --git a/samples/Makefile b/samples/Makefile new file mode 100644 index 0000000..5a05c00 --- /dev/null +++ b/samples/Makefile @@ -0,0 +1,17 @@ +#Makefile for the sample AI programs for UCC progcomp 2012 + +CPP = g++ -Wall -pedantic -lSDL -lGL -g + +dummy : dummy.o + $(CPP) -o dummy dummy.o + +clean : + $(RM) $(BIN) $(OBJ) $(LINKOBJ) + +clean_full: #cleans up all backup files + $(RM) $(BIN) $(OBJ) $(LINKOBJ) + $(RM) *.*~ + $(RM) *~ + + +