The windows-x86 is now from MXE.

See http://mxe.cc
This commit is contained in:
Matt McCormick
2015-05-04 17:32:58 -04:00
parent 9b81da1b2d
commit 760e5acfa6
3 changed files with 59 additions and 12 deletions

View File

@ -1,5 +1,5 @@
DOCKER = docker
IMAGE = thewtex/cross-compilers
IMAGE = thewtex/cross-compiler
android-arm:
$(DOCKER) build -t $(IMAGE)-android-arm linux-arm
@ -19,13 +19,13 @@ linux-armv6:
linux-armv7:
$(DOCKER) build -t $(IMAGE)-linux-armv7 linux-armv7
windows-x86:
windows-x86: base windows-x86/Dockerfile windows-x86/settings.mk
$(DOCKER) build -t $(IMAGE)-windows-x86 windows-x86
windows-x64:
$(DOCKER) build -t $(IMAGE)-windows-x64 windows-x64
base:
base: Dockerfile
$(DOCKER) build -t $(IMAGE)-base .
all: base android-arm darwin-x64 linux-x86 linux-x64 linux-armv6 linux-armv7 windows-x86 windows-x64