From efdbcc6f5e266b5a14dead2e657cbcf63505735c Mon Sep 17 00:00:00 2001 From: "sulokuTDCmago@gmail.com" Date: Sat, 8 Sep 2012 10:12:20 +0000 Subject: [PATCH] Just noticed that the global makefile wasn't in svn, d'oh! --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f81e7c9 --- /dev/null +++ b/Makefile @@ -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 \ No newline at end of file