2014-10-17 13:42:56 +02:00
|
|
|
DOCKER = docker
|
2016-07-16 05:46:08 +02:00
|
|
|
ORG = dockcross
|
2016-07-16 08:45:23 +02:00
|
|
|
BIN = bin
|
2014-10-17 13:42:56 +02:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
images: base android-arm linux-x86 linux-x64 linux-arm64 linux-armv5 linux-armv6 linux-armv7 windows-x86 windows-x64
|
2016-07-16 07:27:13 +02:00
|
|
|
|
2016-07-22 14:49:49 +02:00
|
|
|
test: base.test android-arm.test linux-x86.test linux-x64.test linux-arm64.test linux-armv5.test linux-armv6.test linux-armv7.test windows-x86.test windows-x64.test
|
2016-07-16 07:17:36 +02:00
|
|
|
|
2015-05-16 19:36:10 +02:00
|
|
|
android-arm: base android-arm/Dockerfile
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/android-arm android-arm
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
android-arm.test: android-arm test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/android-arm > $(BIN)/dockcross-android-arm && chmod +x $(BIN)/dockcross-android-arm
|
|
|
|
$(BIN)/dockcross-android-arm python test/run.py
|
|
|
|
|
2015-05-19 23:52:43 +02:00
|
|
|
browser-asmjs: base browser-asmjs/Dockerfile
|
2016-07-06 21:33:35 +02:00
|
|
|
cp -r test browser-asmjs/
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/browser-asmjs browser-asmjs
|
2016-07-06 21:33:35 +02:00
|
|
|
rm -rf browser-asmjs/test
|
2015-05-19 23:34:05 +02:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
browser-asmjs.test: browser-asmjs test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/browser-asmjs > $(BIN)/dockcross-browser-asmjs && chmod +x $(BIN)/dockcross-browser-asmjs
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-browser-asmjs python test/run.py --exe-suffix ".js"
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2016-07-16 05:46:08 +02:00
|
|
|
linux-x86: base linux-x86/Dockerfile linux-x86/Toolchain.cmake
|
|
|
|
$(DOCKER) build -t $(ORG)/linux-x86 linux-x86
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-x86.test: linux-x86 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-x86 > $(BIN)/dockcross-linux-x86 && chmod +x $(BIN)/dockcross-linux-x86
|
|
|
|
$(BIN)/dockcross-linux-x86 python test/run.py
|
|
|
|
|
2016-07-16 07:14:50 +02:00
|
|
|
linux-x64: base linux-x64/Dockerfile
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-x64 linux-x64
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-x64.test: linux-x64 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-x64 > $(BIN)/dockcross-linux-x64 && chmod +x $(BIN)/dockcross-linux-x64
|
|
|
|
$(BIN)/dockcross-linux-x64 python test/run.py
|
|
|
|
|
2016-07-15 22:20:46 +02:00
|
|
|
linux-arm64: base linux-arm64/Dockerfile linux-arm64/Toolchain.cmake
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-arm64 linux-arm64
|
2016-07-15 22:20:46 +02:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-arm64.test: linux-arm64 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-arm64 > $(BIN)/dockcross-linux-arm64 && chmod +x $(BIN)/dockcross-linux-arm64
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-arm64 python test/run.py
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2016-05-27 00:54:02 +02:00
|
|
|
linux-armv5: base linux-armv5/Dockerfile linux-armv5/Toolchain.cmake
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-armv5 linux-armv5
|
2016-05-27 00:54:02 +02:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-armv5.test: linux-armv5 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-armv5 > $(BIN)/dockcross-linux-armv5 && chmod +x $(BIN)/dockcross-linux-armv5
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-armv5 python test/run.py
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-13 20:09:25 +02:00
|
|
|
linux-armv6: base linux-armv6/Dockerfile linux-armv6/Toolchain.cmake
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-armv6 linux-armv6
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-armv6.test: linux-armv6 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-armv6 > $(BIN)/dockcross-linux-armv6 && chmod +x $(BIN)/dockcross-linux-armv6
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-armv6 python test/run.py
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-09 13:48:53 +02:00
|
|
|
linux-armv7: base linux-armv7/Dockerfile linux-armv7/Toolchain.cmake
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-armv7 linux-armv7
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-armv7.test: linux-armv7 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-armv7 > $(BIN)/dockcross-linux-armv7 && chmod +x $(BIN)/dockcross-linux-armv7
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-armv7 python test/run.py
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-18 21:21:05 +02:00
|
|
|
linux-ppc64le: base linux-ppc64le/Dockerfile linux-ppc64le/Toolchain.cmake
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-ppc64le linux-ppc64le
|
2015-05-18 21:21:05 +02:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
linux-ppc64le.test: linux-ppc64le test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/linux-ppc64le > $(BIN)/dockcross-linux-ppc64le && chmod +x $(BIN)/dockcross-linux-ppc64le
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-ppc64le python test/run.py --languages C
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
windows-x86: base windows-x86/Dockerfile windows-x86/settings.mk
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/windows-x86 windows-x86
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
windows-x86.test: windows-x86 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/windows-x86 > $(BIN)/dockcross-windows-x86 && chmod +x $(BIN)/dockcross-windows-x86
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-windows-x86 python test/run.py --exe-suffix ".exe"
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-06 06:08:21 +02:00
|
|
|
windows-x64: base windows-x64/Dockerfile windows-x64/settings.mk
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/windows-x64 windows-x64
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
windows-x64.test: windows-x64 test/run.py
|
|
|
|
$(DOCKER) run --rm dockcross/windows-x64 > $(BIN)/dockcross-windows-x64 && chmod +x $(BIN)/dockcross-windows-x64
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-windows-x64 python test/run.py --exe-suffix ".exe"
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
base: Dockerfile
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/base .
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-07-16 08:45:23 +02:00
|
|
|
base.test: base test/run.py
|
2016-07-16 19:55:04 +02:00
|
|
|
mkdir -p $(BIN)
|
2016-07-16 08:45:23 +02:00
|
|
|
$(DOCKER) run --rm dockcross/base > $(BIN)/dockcross-base && chmod +x $(BIN)/dockcross-base
|
|
|
|
|
|
|
|
.PHONY: images base android-arm linux-x86 linux-x64 linux-arm64 linux-armv5 linux-armv6 linux-armv7 windows-x86 windows-x64 tests %.test
|