diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-30 16:27:01 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-30 16:27:01 -0400 |
commit | 208c414ab9600eca4852034a923418948629ced0 (patch) | |
tree | 127f58e25b72c94b6efa1b13e82fb736ba4dd27a | |
parent | 80f87bc1000c46f7065e42cd6b0abd8a44f57bb4 (diff) | |
download | fork-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.am | 30 |
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 |