2023-08-13 18:46:40 +02:00
|
|
|
.PHONY: package
|
|
|
|
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
|
|
export BASE := $(shell basename $(CURDIR))
|
|
|
|
export OUT := $(TOPDIR)/../../out
|
|
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
|
|
|
|
package: directory 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
|
2023-08-14 08:33:50 +02:00
|
|
|
cd tmp && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
cd $(TOPDIR); rm -rf tmp
|
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp ace3dsplus.jpg README.txt $(OUT)/$(BASE)
|