Files
2025-06-16 10:39:25 -05:00

16 lines
330 B
Makefile

.PHONY: package
export TOPDIR := $(CURDIR)
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory extdata
directory:
mkdir -p $(OUT)/$(BASE)
extdata: directory
cp -r DEMON_common $(OUT)/$(BASE)
cp -r R4SDHC_common $(OUT)/$(BASE)