restructure makefile for individual builds, restructure linux-arm dockerfiles

This commit is contained in:
Rob Burns 2015-02-01 10:18:38 +07:00
parent e45785c7f7
commit 7a5bc6c22d
3 changed files with 35 additions and 19 deletions

View File

@ -1,15 +1,33 @@
PLATFORMS = android-arm \
darwin-x64 \
linux-x86 \
linux-x64 \
linux-arm \
windows-x86 \
windows-x64
DOCKER = docker
IMAGE = steeve/cross-compiler
IMAGE = rburns/cross-compiler
all:
android-arm:
$(DOCKER) build -t $(IMAGE):android-arm linux-arm
darwin-x64:
$(DOCKER) build -t $(IMAGE):darwin-x64 darwin-x64
linux-x86:
$(DOCKER) build -t $(IMAGE):darwin-x86 darwin-x86
linux-x64:
$(DOCKER) build -t $(IMAGE):linux-x64 linux-x64
linux-armv6:
$(DOCKER) build -t $(IMAGE):linux-arm linux-armv6
linux-armv7:
$(DOCKER) build -t $(IMAGE):linux-armv7 linux-armv7
windows-x86:
$(DOCKER) build -t $(IMAGE):windows-x86 windows-x86
windows-x64:
$(DOCKER) build -t $(IMAGE):windows-x64 windows-x64
base:
$(DOCKER) build -t $(IMAGE):base .
for i in $(PLATFORMS); do \
$(DOCKER) build -t $(IMAGE):$$i $$i ; \
done
all: base android-arm darwin-x64 linux-x86 linux-x64 linux-arm linux-armv7 windows-x86 windows-x64
.PHONY: all linux-armv6 linux-armv7

View File

@ -1,4 +1,4 @@
FROM steeve/cross-compiler:base
FROM rburns/cross-compiler:base
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
ENV CROSS_TRIPLE arm-linux-gnueabihf

View File

@ -1,14 +1,12 @@
FROM steeve/cross-compiler:base
FROM rburns/cross-compiler:base
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
# Add the cross compiler sources
RUN echo "deb http://toolchains.secretsauce.net unstable main" >> /etc/apt/sources.list && \
RUN echo "deb http://emdebian.org/tools/debian/ jessie main" >> /etc/apt/sources.list && \
dpkg --add-architecture armhf && \
curl -L http://toolchains.secretsauce.net/key.gpg | apt-key add -
curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
RUN apt-get update && apt-get -y install \
gcc-4.9-arm-linux-gnueabihf \
g++-4.9-arm-linux-gnueabihf
RUN apt-get update && apt-get install -y crossbuild-essential-armhf
ENV CROSS_TRIPLE arm-linux-gnueabihf
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}