Remove *~ files when doing 'make clean'.
authorRichard Jones <rjones@redhat.com>
Thu, 9 Apr 2009 18:47:22 +0000 (19:47 +0100)
committerRichard Jones <rjones@redhat.com>
Thu, 9 Apr 2009 18:47:22 +0000 (19:47 +0100)
Makefile.am
daemon/Makefile.am
examples/Makefile.am
fish/Makefile.am
images/Makefile.am
ocaml/Makefile.am
perl/Makefile.am
python/Makefile.am
src/Makefile.am

index f2cb9d9..55e5dde 100644 (file)
@@ -146,7 +146,7 @@ test-boot-realistic: emptydisk
 
 # Make clean.
 
-CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp
+CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp *~ html/*~
 
 clean-local:
        rm -rf initramfs
index bdeeacf..c5ae1ef 100644 (file)
@@ -34,4 +34,6 @@ guestfsd_SOURCES = \
        ../src/guestfs_protocol.h \
        ../src/guestfs_protocol.c
 
-guestfsd_CFLAGS = -Wall
\ No newline at end of file
+guestfsd_CFLAGS = -Wall
+
+CLEANFILES = *~
index 9bac5f3..cafb7f9 100644 (file)
@@ -9,3 +9,5 @@ df_LDADD = $(top_builddir)/src/libguestfs.la
 hello_SOURCES = hello.c
 hello_CFLAGS = -I$(top_builddir)/src -Wall
 hello_LDADD = $(top_builddir)/src/libguestfs.la
+
+CLEANFILES = *~
index 76a2894..b9c51b8 100644 (file)
@@ -25,3 +25,5 @@ guestfish_CFLAGS = \
        -I$(top_builddir)/src -Wall \
        -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"'
 guestfish_LDADD = $(top_builddir)/src/libguestfs.la
+
+CLEANFILES = *~
index 99266ad..e9ea2f4 100644 (file)
@@ -16,3 +16,5 @@
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 EXTRA_DIST     = mbr-ext2-empty.img.gz
+
+CLEANFILES = *~
index 00e8027..ee42134 100644 (file)
@@ -22,6 +22,8 @@ EXTRA_DIST = \
 
 SUBDIRS = examples
 
+CLEANFILES = *~
+
 if HAVE_OCAML
 
 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
index 24548ed..c72d045 100644 (file)
@@ -25,6 +25,8 @@ EXTRA_DIST = \
        examples/*.pl \
        t/*.t
 
+CLEANFILES = *~ examples/*~ t/*~
+
 if HAVE_PERL
 
 # Interfacing automake and ExtUtils::MakeMaker known to be
index e4ef9e8..509e87c 100644 (file)
@@ -17,6 +17,8 @@
 
 EXTRA_DIST = README-python-bindings
 
+CLEANFILES = *~
+
 if HAVE_PYTHON
 
 endif
\ No newline at end of file
index de02622..20b445c 100644 (file)
@@ -47,4 +47,6 @@ guestfs_protocol.h: guestfs_protocol.x
        rm -f $@-t
        $(RPCGEN) -h -o $@-t $<
        mv $@-t $@
-endif
\ No newline at end of file
+endif
+
+CLEANFILES = *~