mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
30bc03c9fa
-updated libext2fs to e2fsprogs 1.42 -updated libfat to R4883 Thanks to USB Loader GX for the new libs
32 lines
586 B
Makefile
32 lines
586 B
Makefile
ifeq ($(strip $(DEVKITPRO)),)
|
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro)
|
|
endif
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
|
|
export LIBFAT_MAJOR := 1
|
|
export LIBFAT_MINOR := 0
|
|
export LIBFAT_PATCH := 10
|
|
|
|
export VERSTRING := $(LIBFAT_MAJOR).$(LIBFAT_MINOR).$(LIBFAT_PATCH)
|
|
|
|
|
|
default: release
|
|
|
|
all: release
|
|
|
|
release: include/libfatversion.h wii-release
|
|
|
|
wii-release:
|
|
$(MAKE) -C libogc PLATFORM=wii BUILD=wii_release
|
|
|
|
clean: ogc-clean
|
|
|
|
ogc-clean:
|
|
$(MAKE) -C libogc clean
|
|
|
|
install: ogc-install
|
|
|
|
ogc-install: cube-release wii-release
|
|
$(MAKE) -C libogc install
|