Moved build process to GCC

* I've replaced the Image class with the newer version
* Removed the sound system to ensure that it compiles & runs
This commit is contained in:
Kayne Ruse
2013-09-06 16:06:50 +10:00
parent ca8820ba78
commit dad75c2dfa
22 changed files with 265 additions and 1151 deletions

17
makefile Normal file
View File

@@ -0,0 +1,17 @@
#for use on Windows:
#MKDIR=mkdir
#RM=del /y
OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C Hearts
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all