mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 09:49:16 +01:00
18 lines
393 B
Makefile
18 lines
393 B
Makefile
|
.PHONY: package directory CycloDS_Evolution CycloDS_iEvolution
|
||
|
|
||
|
export TOPDIR := $(shell pwd $(CURDIR))
|
||
|
export BASE := $(shell basename $(CURDIR))
|
||
|
export OUT := $(TOPDIR)/../../out
|
||
|
export COMMON := $(TOPDIR)/../../common-kernels
|
||
|
|
||
|
package: directory CycloDS_Evolution CycloDS_iEvolution
|
||
|
|
||
|
directory:
|
||
|
mkdir -p $(OUT)/$(BASE)
|
||
|
|
||
|
CycloDS_Evolution:
|
||
|
make -C $@
|
||
|
|
||
|
CycloDS_iEvolution:
|
||
|
make -C $@
|