Just noticed that the global makefile wasn't in svn, d'oh!

This commit is contained in:
sulokuTDCmago@gmail.com
2012-09-08 10:12:20 +00:00
parent 4b58d5ed0b
commit efdbcc6f5e

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
default: all
all: wii gc
clean: gc-clean wii-clean
wii:
cp source/gcmm-bk.wii source/gcmm-bk.s
$(MAKE) -f Makefile.wii
wii-clean:
$(MAKE) -f Makefile.wii clean
gc:
cp source/gcmm-bk.gc source/gcmm-bk.s
$(MAKE) -f Makefile.gc
gc-clean:
$(MAKE) -f Makefile.gc clean
runwii:
$(MAKE) -f Makefile.wii run
rungc:
$(MAKE) -f Makefile.gc run
run: runwii