mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 16:24:27 +01:00
Makefile: Remove "Toolchain.cmake" dependencies
Since image targets are all "phony", they are always consider out-of-date and will always be rebuilt. This means there is no need to add an explicit dependency on the "Toolchain.cmake" file. Note also that the dependency on "Toolchain.cmake" was not consistent for all images. For example, "linux-x64" was missing the dependency whereas it was specified for "linux-x86". This commit ensure all image targets are consistent removing the dependency on "Toolchain.cmake". To confirm that the Makefiles works as expected after this patch, the list of executed commands before and after is compared: Before: ``` make --dry-run > ../dockcross-make-baseline make test --dry-run > ../dockcross-make-test-baseline ``` After: ``` make --dry-run > ../dockcross-make-current; make test --dry-run > ../dockcross-make-test-current for target in make make-test; do diff ../dockcross-$target-current ../dockcross-$target-baseline > /dev/null 2>&1 [[ $? == 1 ]] && \ echo "" && \ echo "Error: Problem with '${target}' target: Dry-run output before and after this commit do not match." done ```
This commit is contained in:
parent
e428bb3c03
commit
caba0b0cef
12
Makefile
12
Makefile
@ -23,7 +23,7 @@ browser-asmjs.test: browser-asmjs test/run.py
|
|||||||
$(DOCKER) run --rm dockcross/browser-asmjs > $(BIN)/dockcross-browser-asmjs && chmod +x $(BIN)/dockcross-browser-asmjs
|
$(DOCKER) run --rm dockcross/browser-asmjs > $(BIN)/dockcross-browser-asmjs && chmod +x $(BIN)/dockcross-browser-asmjs
|
||||||
$(BIN)/dockcross-browser-asmjs python test/run.py --exe-suffix ".js"
|
$(BIN)/dockcross-browser-asmjs python test/run.py --exe-suffix ".js"
|
||||||
|
|
||||||
linux-x86: base linux-x86/Dockerfile linux-x86/Toolchain.cmake
|
linux-x86: base linux-x86/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-x86 linux-x86
|
$(DOCKER) build -t $(ORG)/linux-x86 linux-x86
|
||||||
|
|
||||||
linux-x86.test: linux-x86 test/run.py
|
linux-x86.test: linux-x86 test/run.py
|
||||||
@ -37,35 +37,35 @@ linux-x64.test: linux-x64 test/run.py
|
|||||||
$(DOCKER) run --rm dockcross/linux-x64 > $(BIN)/dockcross-linux-x64 && chmod +x $(BIN)/dockcross-linux-x64
|
$(DOCKER) run --rm dockcross/linux-x64 > $(BIN)/dockcross-linux-x64 && chmod +x $(BIN)/dockcross-linux-x64
|
||||||
$(BIN)/dockcross-linux-x64 python test/run.py
|
$(BIN)/dockcross-linux-x64 python test/run.py
|
||||||
|
|
||||||
linux-arm64: base linux-arm64/Dockerfile linux-arm64/Toolchain.cmake
|
linux-arm64: base linux-arm64/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-arm64 linux-arm64
|
$(DOCKER) build -t $(ORG)/linux-arm64 linux-arm64
|
||||||
|
|
||||||
linux-arm64.test: linux-arm64 test/run.py
|
linux-arm64.test: linux-arm64 test/run.py
|
||||||
$(DOCKER) run --rm dockcross/linux-arm64 > $(BIN)/dockcross-linux-arm64 && chmod +x $(BIN)/dockcross-linux-arm64
|
$(DOCKER) run --rm dockcross/linux-arm64 > $(BIN)/dockcross-linux-arm64 && chmod +x $(BIN)/dockcross-linux-arm64
|
||||||
$(BIN)/dockcross-linux-arm64 python test/run.py
|
$(BIN)/dockcross-linux-arm64 python test/run.py
|
||||||
|
|
||||||
linux-armv5: base linux-armv5/Dockerfile linux-armv5/Toolchain.cmake
|
linux-armv5: base linux-armv5/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-armv5 linux-armv5
|
$(DOCKER) build -t $(ORG)/linux-armv5 linux-armv5
|
||||||
|
|
||||||
linux-armv5.test: linux-armv5 test/run.py
|
linux-armv5.test: linux-armv5 test/run.py
|
||||||
$(DOCKER) run --rm dockcross/linux-armv5 > $(BIN)/dockcross-linux-armv5 && chmod +x $(BIN)/dockcross-linux-armv5
|
$(DOCKER) run --rm dockcross/linux-armv5 > $(BIN)/dockcross-linux-armv5 && chmod +x $(BIN)/dockcross-linux-armv5
|
||||||
$(BIN)/dockcross-linux-armv5 python test/run.py
|
$(BIN)/dockcross-linux-armv5 python test/run.py
|
||||||
|
|
||||||
linux-armv6: base linux-armv6/Dockerfile linux-armv6/Toolchain.cmake
|
linux-armv6: base linux-armv6/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-armv6 linux-armv6
|
$(DOCKER) build -t $(ORG)/linux-armv6 linux-armv6
|
||||||
|
|
||||||
linux-armv6.test: linux-armv6 test/run.py
|
linux-armv6.test: linux-armv6 test/run.py
|
||||||
$(DOCKER) run --rm dockcross/linux-armv6 > $(BIN)/dockcross-linux-armv6 && chmod +x $(BIN)/dockcross-linux-armv6
|
$(DOCKER) run --rm dockcross/linux-armv6 > $(BIN)/dockcross-linux-armv6 && chmod +x $(BIN)/dockcross-linux-armv6
|
||||||
$(BIN)/dockcross-linux-armv6 python test/run.py
|
$(BIN)/dockcross-linux-armv6 python test/run.py
|
||||||
|
|
||||||
linux-armv7: base linux-armv7/Dockerfile linux-armv7/Toolchain.cmake
|
linux-armv7: base linux-armv7/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-armv7 linux-armv7
|
$(DOCKER) build -t $(ORG)/linux-armv7 linux-armv7
|
||||||
|
|
||||||
linux-armv7.test: linux-armv7 test/run.py
|
linux-armv7.test: linux-armv7 test/run.py
|
||||||
$(DOCKER) run --rm dockcross/linux-armv7 > $(BIN)/dockcross-linux-armv7 && chmod +x $(BIN)/dockcross-linux-armv7
|
$(DOCKER) run --rm dockcross/linux-armv7 > $(BIN)/dockcross-linux-armv7 && chmod +x $(BIN)/dockcross-linux-armv7
|
||||||
$(BIN)/dockcross-linux-armv7 python test/run.py
|
$(BIN)/dockcross-linux-armv7 python test/run.py
|
||||||
|
|
||||||
linux-ppc64le: base linux-ppc64le/Dockerfile linux-ppc64le/Toolchain.cmake
|
linux-ppc64le: base linux-ppc64le/Dockerfile
|
||||||
$(DOCKER) build -t $(ORG)/linux-ppc64le linux-ppc64le
|
$(DOCKER) build -t $(ORG)/linux-ppc64le linux-ppc64le
|
||||||
|
|
||||||
linux-ppc64le.test: linux-ppc64le test/run.py
|
linux-ppc64le.test: linux-ppc64le test/run.py
|
||||||
|
Loading…
Reference in New Issue
Block a user