mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
4645a54edf
SVN ignores build and executable folders and .pnps files.
26 lines
335 B
Makefile
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
|