mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-23 02:09:16 +01:00
1564081e03
Fix r4dsixl3d.com makefile one more fix
17 lines
463 B
Makefile
17 lines
463 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := r4dsixl3d.com/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory r4dsixl3d.com_Kernel_1.8.zip extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
r4dsixl3d.com_Kernel_1.8.zip: directory
|
|
cd $(TOPDIR)/r4dsixl3d.com_Kernel_1.8 && zip -r -X $(OUT)/$(BASE)/$@ *
|
|
|
|
extdata: directory
|
|
cp README.txt $(OUT)/$(BASE)
|