Files
Hearts/makefile
Kayne Ruse dad75c2dfa 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
2013-09-06 16:06:50 +10:00

18 lines
171 B
Makefile

#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