vbagx/Makefile
Daryl Borth e52829994b remove wiiupc since libogc wiiuse now supports WiiU Pro controller.
remove update check completely. compatibility fixes for newer devkitppc.
2018-08-01 12:41:41 -06: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