summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-30 16:27:01 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-30 16:27:01 -0400
commit208c414ab9600eca4852034a923418948629ced0 (patch)
tree127f58e25b72c94b6efa1b13e82fb736ba4dd27a
parent80f87bc1000c46f7065e42cd6b0abd8a44f57bb4 (diff)
downloadfork-ledger-208c414ab9600eca4852034a923418948629ced0.tar.gz
fork-ledger-208c414ab9600eca4852034a923418948629ced0.tar.bz2
fork-ledger-208c414ab9600eca4852034a923418948629ced0.zip
Fixed the clean targets in Makefile.am. Use 'all-clean' to wipe everything
generated.
-rw-r--r--Makefile.am30
1 files changed, 17 insertions, 13 deletions
diff --git a/Makefile.am b/Makefile.am
index 82600758..3a01dd5f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -263,9 +263,7 @@ doxygen-docs: $(top_builddir)/Doxyfile.gen
######################################################################
clean-backupfiles:
- rm -fr *~ \
- .*~ \
- .\#*
+ (cd $(srcdir); rm -fr *~ .*~ .\#*)
clean-documentation:
rm -fr *.aux \
@@ -303,16 +301,22 @@ clean-debugdata:
out
clean-autoconf:
- rm -fr Makefile \
+ (cd $(srcdir); \
+ rm -fr AUTHORS \
+ COPYING \
+ ChangeLog \
+ INSTALL \
+ Makefile \
Makefile.in \
acconf.h \
acconf.h.in \
aclocal.m4 \
- autom4te.cache \
+ autom4te \
compile \
config.guess \
config.sub \
configure \
+ configure.in \
depcomp \
elc-stamp \
elc-temp \
@@ -326,11 +330,11 @@ clean-autoconf:
py-compile \
stamp \
texinfo.tex \
- ylwrap
-
-scour: maintainer-clean \
- clean-buildproducts \
- clean-backupfiles \
- clean-debugdata \
- clean-documentation \
- clean-autoconf
+ ylwrap)
+
+all-clean: maintainer-clean \
+ clean-buildproducts \
+ clean-backupfiles \
+ clean-debugdata \
+ clean-documentation \
+ clean-autoconf