WiiFlow_Lite/plugins/snes9x_gx/Makefile1

26 lines
335 B
Plaintext
Raw Normal View History

.PHONY = all wii gc wii-clean gc-clean wii-run gc-run
all: wii gc
run: wii-run
clean: wii-clean gc-clean
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