X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=samples%2Fbasic_cpp%2FMakefile;fp=samples%2Fbasic_cpp%2FMakefile;h=0000000000000000000000000000000000000000;hp=0a249b3a86b068709f01e66b7f966d7499f3cfef;hb=e3b15cd5dea739f7523920d83bda592db95a7b93;hpb=7f7bc05439b70b3139086086608996de3c9ae2ed diff --git a/samples/basic_cpp/Makefile b/samples/basic_cpp/Makefile deleted file mode 100644 index 0a249b3..0000000 --- a/samples/basic_cpp/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -#Makefile for basic_cpp -# Sample C++ Stratego AI -# UCC Programming Competition 2012 - -CPP = g++ -Wall -pedantic -lSDL -lGL -g -OBJ = basic_cpp.o - -BIN = basic_cpp - - - -$(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) *~ - -