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 71d8261 commit 40e08deCopy full SHA for 40e08de
Makefile
@@ -25,9 +25,15 @@ install:
25
dist:
26
$(PYTHON) setup.py sdist
27
28
+clean:
29
+ rm -rf build systemd/*.so systemd/*.py[co] *.py[co] systemd/__pycache__
30
+
31
+distclean: clean
32
+ rm -rf dist MANIFEST systemd/id128-constants.h
33
34
SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
35
sphinx-%: build
36
PYTHONPATH=$(builddir) $(SPHINX_BUILD) -b $* $(SPHINXOPTS) docs build/docs
37
@echo Output has been generated in build/docs
38
-.PHONY: build install dist
39
+.PHONY: build install dist clean distclean
0 commit comments