vbagx/Makefile
Carl.Kenner 4645a54edf Project file added, Makefile supports Alt+R, Makefile compiles if necessary before running.
SVN ignores build and executable folders and .pnps files.
2009-03-05 06:58:25 +00:00

26 lines
335 B
Makefile

.PHONY = all wii gc wii-clean gc-clean wii-run gc-run
all: wii gc
clean: wii-clean gc-clean
run: wii-run
wii:
$(MAKE) -f Makefile.wii
wii-clean:
$(MAKE) -f Makefile.wii clean
wii-run: wii
$(MAKE) -f Makefile.wii run
gc:
$(MAKE) -f Makefile.gc
gc-clean:
$(MAKE) -f Makefile.gc clean
gc-run: gc
$(MAKE) -f Makefile.gc run