mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
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:
committed by
Quentin Bourgerie
parent
e7b2582639
commit
2c63018ed2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user