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 f83f19b commit c1c5529Copy full SHA for c1c5529
.gitignore
@@ -1,6 +1,7 @@
1
__pycache__/
2
*.py[co]
3
/journald/*.so
4
+/TAGS
5
6
# Packages
7
*.egg
Makefile
PYTHON = python
SED = sed
SPHINX_BUILD = sphinx-build
+ETAGS = etags
INCLUDE_DIR = /usr/include/
VERSION := $(shell $(PYTHON) setup.py --version)
@@ -33,4 +34,7 @@ sphinx-%: build
33
34
PYTHONPATH=$(builddir) $(SPHINX_BUILD) -b $* $(SPHINXOPTS) docs build/docs
35
@echo Output has been generated in build/docs
36
-.PHONY: build install dist clean distclean
37
+TAGS: $(shell git ls-files systemd/*.[ch])
38
+ $(ETAGS) $+
39
+
40
+.PHONY: build install dist clean distclean TAGS
0 commit comments