mirror of
https://github.com/wiiu-env/libfat.git
synced 2024-11-22 18:09:17 +01:00
46 lines
905 B
Makefile
46 lines
905 B
Makefile
|
ifeq ($(strip $(DEVKITPRO)),)
|
||
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro)
|
||
|
endif
|
||
|
|
||
|
export TOPDIR := $(CURDIR)
|
||
|
|
||
|
export DATESTRING := $(shell date +%Y)$(shell date +%m)$(shell date +%d)
|
||
|
|
||
|
default: release
|
||
|
|
||
|
all: release dist
|
||
|
|
||
|
release:
|
||
|
make -C nds BUILD=release
|
||
|
make -C gba BUILD=release
|
||
|
|
||
|
debug: lib
|
||
|
make -C nds BUILD=debug
|
||
|
make -C gba BUILD=debug
|
||
|
|
||
|
clean:
|
||
|
make -C nds clean
|
||
|
make -C gba clean
|
||
|
|
||
|
dist-bin: distribute/$(DATESTRING)
|
||
|
make -C nds dist-bin
|
||
|
make -C gba dist-bin
|
||
|
|
||
|
dist-src: distribute/$(DATESTRING)
|
||
|
@tar --exclude=*CVS* -cvjf distribute/$(DATESTRING)/libfat-src-$(DATESTRING).tar.bz2 \
|
||
|
source include Makefile \
|
||
|
nds/Makefile nds/include \
|
||
|
gba/Makefile gba/include
|
||
|
|
||
|
dist: dist-bin dist-src
|
||
|
|
||
|
distribute/$(DATESTRING): distribute
|
||
|
@[ -d $@ ] || mkdir -p $@
|
||
|
|
||
|
distribute:
|
||
|
@[ -d $@ ] || mkdir -p $@
|
||
|
|
||
|
install:
|
||
|
make -C nds install
|
||
|
make -C gba install
|