mirror of
https://github.com/wiiu-env/libntfs.git
synced 2024-11-04 17:45:29 +01:00
32 lines
531 B
Makefile
32 lines
531 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
|
||
|
|
||
|
install: cube-release wii-release
|
||
|
$(MAKE) -C source install
|
||
|
|
||
|
run: install
|
||
|
$(MAKE) -C example
|
||
|
$(MAKE) -C example run
|
||
|
|