mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 09:49:16 +01:00
e8f78c0956
This fixes building on macOS.
27 lines
511 B
Makefile
27 lines
511 B
Makefile
.PHONY: package DSONE DSONE_SDHC_DSONEi DSTWO Lite_Rumble
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory DSONE DSONE_SDHC_DSONEi DSTWO Lite_Rumble extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
DSONE: directory
|
|
make -C $@
|
|
|
|
DSONE_SDHC_DSONEi: directory
|
|
make -C $@
|
|
|
|
DSTWO: directory
|
|
make -C $@
|
|
|
|
Lite_Rumble: directory
|
|
make -C $@
|
|
|
|
extdata: directory
|
|
cp README.txt $(OUT)/$(BASE)
|