mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2025-01-08 08:10:48 +01:00
21 lines
398 B
Makefile
21 lines
398 B
Makefile
|
.PHONY: package directory original Dual-Core_i R4infinity_3
|
||
|
|
||
|
export TOPDIR := $(shell pwd $(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 $@
|