fix(compiler): Makefile: Make targets without file dependencies PHONY

Most of the targets in `Makefile` do not deped on files produced by
other targets and use target names solely for dependency
management. Make all such targets PHONY in order to avoid that they
are skipped accidentially when a file with the same name is present.
This commit is contained in:
Andi Drebes
2021-10-26 16:49:09 +02:00
committed by Quentin Bourgerie
parent e7b2582639
commit 2c63018ed2

View File

@@ -64,3 +64,18 @@ package_py39:
package_py310:
$(call build_image_and_copy_wheels,cp310-cp310)
.PHONY: build-initialized \
build-end-to-end-jit \
zamacompiler \
python-bindings \
test-check \
test-end-to-end-jit \
test-python \
test \
add-deps \
file-check \
not \
package_py38 \
package_py39 \
package_py310