mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
703053871c
Signed-off-by: Steeve Morin <steeve.morin@gmail.com>
16 lines
258 B
Makefile
16 lines
258 B
Makefile
PLATFORMS = base \
|
|
android-arm \
|
|
darwin-x64 \
|
|
linux-x86 \
|
|
linux-x64 \
|
|
linux-arm \
|
|
windows-x86 \
|
|
windows-x64
|
|
DOCKER = docker
|
|
IMAGE = steeve/cross-compiler
|
|
|
|
all:
|
|
for i in $(PLATFORMS); do \
|
|
$(DOCKER) build -t $(IMAGE):$$i $$i ; \
|
|
done
|