mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2025-01-05 15:02:02 +01:00
f6d6718a15
* Remove outdated ARDSi package * Add ARDS/ME and ARDSi/3DS packages. * Update ActionReplay makefile
18 lines
542 B
Makefile
18 lines
542 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory Action_Replay_DS_and_Media_Edition.zip Action_Replay_DSi_and_3DS.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
Action_Replay_DS_and_Media_Edition.zip: directory
|
|
cd $(TOPDIR)/Action_Replay_DS_and_Media_Edition && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
Action_Replay_DSi_and_3DS.zip: directory
|
|
cd $(TOPDIR)/Action_Replay_DSi_and_3DS && zip -r $(OUT)/$(BASE)/$@ *
|