mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 17:59:15 +01:00
e8f78c0956
This fixes building on macOS.
18 lines
462 B
Makefile
18 lines
462 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := SuperCard/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory SuperCard_DSTWO_EOS_1.14.zip extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
SuperCard_DSTWO_EOS_1.14.zip: directory
|
|
cd $(TOPDIR)/SuperCard_DSTWO_EOS_1.14 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
extdata: directory
|
|
cp -r SuperCard_DSTWO_FWUpdate* $(OUT)/$(BASE)
|