mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-12 22:21:32 +01:00
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
|