mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
26 lines
350 B
Makefile
26 lines
350 B
Makefile
|
|
||
|
default: wii-release
|
||
|
|
||
|
all: debug release
|
||
|
|
||
|
debug: wii-debug
|
||
|
|
||
|
release: wii-release
|
||
|
|
||
|
wii-debug:
|
||
|
$(MAKE) -C source PLATFORM=wii BUILD=wii_debug
|
||
|
|
||
|
wii-release:
|
||
|
$(MAKE) -C source PLATFORM=wii BUILD=wii_release
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C source clean
|
||
|
|
||
|
install: wii-release
|
||
|
$(MAKE) -C source install
|
||
|
|
||
|
run: install
|
||
|
$(MAKE) -C example
|
||
|
$(MAKE) -C example run
|
||
|
|