mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
f145fb1e91
https://code.google.com/p/libntfs-wii/ Added MEM2_alloc for Wii.
37 lines
635 B
Makefile
37 lines
635 B
Makefile
|
|
default: cube-release wii-release
|
|
|
|
all: debug release
|
|
|
|
debug: cube-debug wii-debug
|
|
|
|
release: cube-release wii-release
|
|
|
|
cube-debug:
|
|
$(MAKE) -C source PLATFORM=cube BUILD=cube_debug
|
|
|
|
wii-debug:
|
|
$(MAKE) -C source PLATFORM=wii BUILD=wii_debug
|
|
|
|
cube-release:
|
|
$(MAKE) -C source PLATFORM=cube BUILD=cube_release
|
|
|
|
wii-release:
|
|
$(MAKE) -C source PLATFORM=wii BUILD=wii_release
|
|
|
|
clean:
|
|
$(MAKE) -C source clean
|
|
|
|
cube-install: cube-release
|
|
$(MAKE) -C source cube-install PLATFORM=cube
|
|
|
|
wii-install: wii-release
|
|
$(MAKE) -C source wii-install PLATFORM=wii
|
|
|
|
install: wii-install
|
|
|
|
run: install
|
|
$(MAKE) -C example
|
|
$(MAKE) -C example run
|
|
|