mirror of
https://github.com/wiiu-env/libntfs.git
synced 2024-11-14 06:05:07 +01:00
968dee4aef
Changelog can be found here: http://www.tuxera.com/community/release-history/ *fixed bug where deleting a file / directory returned always success (0) *change make install to default to wii-install and seperated cube-install *wii-install copies files to $PORTLIBS path now
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
|
|
|