build: Make 'make clean' remove more files.

Remove man pages and other pages which 'make clean' did not remove
before.

To evaluate which pages could be removed, I did a full build and
check, and then ran 'make clean' followed by 'git clean -xdf'.  By
examining the output of the git clean command I could see which files
were being missed.

Files that are _not_ removed by make clean or make distclean:

 - generator-built files

 - Makefile, Makefile.in, .deps, .depend

 - any ./configure output files (maybe they should be?)
This commit is contained in:
Richard W.M. Jones
2015-10-31 23:41:56 +00:00
parent 6221d54445
commit a2edda266e
43 changed files with 170 additions and 38 deletions

View File

@@ -23,7 +23,11 @@ EXTRA_DIST = \
inspect_vm.py \
guestfs-python.pod
CLEANFILES = *.pyc *.pyo stamp-guestfs-python.pod
CLEANFILES = \
*.pyc \
*.pyo \
guestfs-python.3 \
stamp-guestfs-python.pod
man_MANS = guestfs-python.3
noinst_DATA = $(top_builddir)/website/guestfs-python.3.html