mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-21 17:29:17 +01:00
e8f78c0956
This fixes building on macOS.
23 lines
551 B
Makefile
23 lines
551 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory old Ace3DS+_R4iLS_Wood_R4_1.62.zip extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
Ace3DS+_R4iLS_Wood_R4_1.62.zip: directory
|
|
mkdir tmp;cp -r Ace3DS+_R4iLS_Wood_R4_1.62/* $(COMMON)/Wood_R4Li_1.62/* tmp
|
|
cd tmp && zip -r $(OUT)/$(BASE)/$@ *
|
|
cd $(TOPDIR); rm -rf tmp
|
|
|
|
old: directory
|
|
make -C $@
|
|
|
|
extdata: directory
|
|
cp ace3dsplus.jpg README.txt $(OUT)/$(BASE)
|