mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2025-07-27 03:37:30 +02:00
14 lines
262 B
Makefile
14 lines
262 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory old
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
old: directory
|
|
make -C $@
|