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.
21 lines
385 B
Makefile
21 lines
385 B
Makefile
.PHONY: package directory original Dual-Core_i R4infinity_3
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory original Dual-Core_i R4infinity_3
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
original:
|
|
make -C $@
|
|
|
|
Dual-Core_i:
|
|
make -C $@
|
|
|
|
R4infinity_3:
|
|
make -C $@
|