mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2025-01-08 08:10:48 +01:00
8632d02b4e
Add XMENU 2.55 and 2.53 as well as the firmware upgrade to 1.45. The firmware upgrade to 1.45 is required before updating to xmenu 2.55 according to the readme texts.
18 lines
507 B
Makefile
18 lines
507 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory dslinker_xmenu2.55.zip dslinker_xmenu2.53_fw1.45.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
dslinker_xmenu2.55.zip: directory
|
|
cd $(TOPDIR)/dslinker_xmenu2.55 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
dslinker_xmenu2.53_fw1.45.zip: directory
|
|
cd $(TOPDIR)/dslinker_xmenu2.53_fw1.45 && zip -r $(OUT)/$(BASE)/$@ *
|