mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 01:39:17 +01:00
e8f78c0956
This fixes building on macOS.
18 lines
380 B
Makefile
18 lines
380 B
Makefile
.PHONY: package directory CycloDS_Evolution CycloDS_iEvolution
|
|
|
|
export TOPDIR := $(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 $@
|