mirror of
https://github.com/wiiu-env/libfat.git
synced 2024-11-01 00:05:06 +01:00
135 lines
3.3 KiB
Makefile
135 lines
3.3 KiB
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 := 1
|
|
export LIBFAT_PATCH := 5
|
|
|
|
export VERSTRING := $(LIBFAT_MAJOR).$(LIBFAT_MINOR).$(LIBFAT_PATCH)
|
|
|
|
export DESTDIR := $(DESTDIR)
|
|
|
|
default: release
|
|
|
|
all: release dist
|
|
|
|
release: nds-release gba-release cube-release wii-release gp2x-release
|
|
|
|
ogc-release: include/libfatversion.h cube-release wii-release
|
|
|
|
nds-release: include/libfatversion.h
|
|
$(MAKE) -C nds BUILD=release
|
|
|
|
gba-release: include/libfatversion.h
|
|
$(MAKE) -C gba BUILD=release
|
|
|
|
cube-release: include/libfatversion.h
|
|
$(MAKE) -C libogc PLATFORM=cube BUILD=cube_release
|
|
|
|
wii-release: include/libfatversion.h
|
|
$(MAKE) -C libogc PLATFORM=wii BUILD=wii_release
|
|
|
|
wiiu-release: include/libfatversion.h
|
|
$(MAKE) -C wiiu BUILD=wiiu_release
|
|
|
|
gp2x-release: include/libfatversion.h
|
|
$(MAKE) -C gp2x PLATFORM=gp2x BUILD=gp2x_release
|
|
|
|
debug: nds-debug gba-debug cube-debug wii-debug gp2x-debug
|
|
|
|
ogc-debug: cube-debug wii-debug
|
|
|
|
nds-debug: include/libfatversion.h
|
|
$(MAKE) -C nds BUILD=debug
|
|
|
|
gba-debug: include/libfatversion.h
|
|
$(MAKE) -C gba BUILD=debug
|
|
|
|
cube-debug: include/libfatversion.h
|
|
$(MAKE) -C libogc PLATFORM=cube BUILD=wii_debug
|
|
|
|
wii-debug: include/libfatversion.h
|
|
$(MAKE) -C libogc PLATFORM=wii BUILD=cube_debug
|
|
|
|
wiiu-debug: include/libfatversion.h
|
|
$(MAKE) -C wiiu BUILD=wiiu_debug
|
|
|
|
gp2x-debug: include/libfatversion.h
|
|
$(MAKE) -C gp2x BUILD=debug
|
|
|
|
clean: nds-clean gba-clean ogc-clean gp2x-clean
|
|
|
|
nds-clean:
|
|
$(MAKE) -C nds clean
|
|
|
|
gba-clean:
|
|
$(MAKE) -C gba clean
|
|
|
|
ogc-clean:
|
|
$(MAKE) -C libogc clean
|
|
|
|
gp2x-clean:
|
|
$(MAKE) -C gp2x clean
|
|
|
|
wiiu-clean:
|
|
$(MAKE) -C wiiu clean
|
|
|
|
dist-bin: nds-dist-bin gba-dist-bin ogc-dist-bin gp2x-dist-bin
|
|
|
|
nds-dist-bin: include/libfatversion.h nds-release distribute/$(VERSTRING)
|
|
$(MAKE) -C nds dist-bin
|
|
|
|
gba-dist-bin: include/libfatversion.h gba-release distribute/$(VERSTRING)
|
|
$(MAKE) -C gba dist-bin
|
|
|
|
ogc-dist-bin: include/libfatversion.h ogc-release distribute/$(VERSTRING)
|
|
$(MAKE) -C libogc dist-bin
|
|
|
|
gp2x-dist-bin: include/libfatversion.h gp2x-release distribute/$(VERSTRING)
|
|
$(MAKE) -C gp2x dist-bin
|
|
|
|
dist-src: distribute/$(VERSTRING)
|
|
@tar --exclude=.svn --exclude=*CVS* -cvjf distribute/$(VERSTRING)/libfat-src-$(VERSTRING).tar.bz2 \
|
|
source include Makefile \
|
|
nds/Makefile \
|
|
gba/Makefile \
|
|
libogc/Makefile \
|
|
gp2x/Makefile
|
|
|
|
dist: dist-bin dist-src
|
|
|
|
distribute/$(VERSTRING):
|
|
@[ -d $@ ] || mkdir -p $@
|
|
|
|
include/libfatversion.h : Makefile
|
|
@echo "#ifndef __LIBFATVERSION_H__" > $@
|
|
@echo "#define __LIBFATVERSION_H__" >> $@
|
|
@echo >> $@
|
|
@echo "#define _LIBFAT_MAJOR_ $(LIBFAT_MAJOR)" >> $@
|
|
@echo "#define _LIBFAT_MINOR_ $(LIBFAT_MINOR)" >> $@
|
|
@echo "#define _LIBFAT_PATCH_ $(LIBFAT_PATCH)" >> $@
|
|
@echo >> $@
|
|
@echo '#define _LIBFAT_STRING "libFAT Release '$(LIBFAT_MAJOR).$(LIBFAT_MINOR).$(LIBFAT_PATCH)'"' >> $@
|
|
@echo >> $@
|
|
@echo "#endif // __LIBFATVERSION_H__" >> $@
|
|
|
|
install: nds-install gba-install ogc-install gp2x-install
|
|
|
|
nds-install: nds-release
|
|
$(MAKE) -C nds install
|
|
|
|
gba-install: gba-release
|
|
$(MAKE) -C gba install
|
|
|
|
ogc-install: cube-release wii-release
|
|
$(MAKE) -C libogc install
|
|
|
|
gp2x-install: gp2x-release
|
|
$(MAKE) -C gp2x install
|
|
|
|
wiiu-install: wiiu-release
|
|
$(MAKE) -C wiiu install
|