diff options
| author | David Lamparter <equinox@diac24.net> | 2018-10-24 17:44:04 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2018-10-24 18:35:15 +0200 |
| commit | 67cf020d17b48a21fddfa43718b089ba82837ee0 (patch) | |
| tree | 4f9453def6730d61663a78a0595db1deb782652d /doc | |
| parent | 62e712146b01c0aabbdee34484ff44e955df7f19 (diff) | |
build: make clean and dist consistent
We weren't cleaning up some files (a whole lot of python foobar) and had
some files in the dist tarball that don't quite belong there.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/manpages/subdir.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/manpages/subdir.am b/doc/manpages/subdir.am index 4a9aa4de4d..a4457c9c45 100644 --- a/doc/manpages/subdir.am +++ b/doc/manpages/subdir.am @@ -34,7 +34,8 @@ man_RSTFILES = \ EXTRA_DIST += $(man_RSTFILES) -MANBUILD = doc/manpages/_build/man +MANPARENT = doc/manpages/_build +MANBUILD = $(MANPARENT)/man doc/manpages/_build/.doctrees/environment.pickle: $(man_RSTFILES) # @@ -66,7 +67,7 @@ $(man8) $(man1): $(MANBUILD)/man.stamp clean-local: clean-manpages .PHONY: clean-manpages clean-manpages: - -rm -rf $(MANBUILD) + -rm -rf $(MANPARENT) doc: doc-man .PHONY: doc-man |
