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