We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04582f commit 9b865acCopy full SHA for 9b865ac
Makefile
@@ -66,5 +66,12 @@ ${REQUIREMENTS} : requirements/%.txt : requirements.in */setup.py
66
${RUN} -w /workspace -v `pwd`:/workspace --platform=linux/amd64 python:$* bash -c \
67
"pip install pip-tools && pip-compile --resolver=backtracking -v --upgrade -o $@ $<"
68
69
+# Remove any generated files.
70
+clean :
71
+ rm -rf docs/_build
72
+ rm -rf */build
73
+ rm -rf */dist
74
+ rm -rf */*.egg-info
75
+
76
# Targets that do not generate file-level artifacts.
-.PHONY : dists ${DISTRIBUTIONS} docs doctests image tests ${TESTS}
77
+.PHONY : clean dists ${DISTRIBUTIONS} docs doctests image tests ${TESTS}
0 commit comments