We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e30464 commit 77bd0b8Copy full SHA for 77bd0b8
1 file changed
Makefile
100755
100644
@@ -78,8 +78,14 @@ init:
78
#
79
# dependency of same % stem prefix checks for a matching .py file to consider it a valid target
80
81
+# doesn't work
82
+#.PHONY: all
83
+#.PHONY: %.pyc
84
+# TODO: doesn't work, says nothing to be done even when .pyc isn't present, and allows make anonymize22.py which breaks
85
+#%.py: %.pyc
86
+# @$(MAKE) $@c
87
%.pyc:: %.py
- @# this utility script supports taking .pyc or .pyo names and still does the right thing,
88
+ @# this utility script supports taking .pyc or .pyo names and still does the right thing
89
@bash-tools/python_pip_install_for_script.sh $@ --exclude harisekhon && \
90
python -m py_compile $< && \
91
echo && \
0 commit comments