From: Karel Zak Date: Thu, 12 Jul 2007 12:31:26 +0000 (+0200) Subject: build-sys: remove "make mrproper", git-clean is good enough X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62f0ec7b4a98939bf736c4733b5ddbd155876d50;p=util-linux build-sys: remove "make mrproper", git-clean is good enough Signed-off-by: Karel Zak --- diff --git a/Makefile.am b/Makefile.am index 43e1d7d0..0aa7150e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,15 +32,6 @@ distclean-local: -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f rm -rf autom4te.cache -mrproper: distclean - if [ -f ".gitignore" ]; then \ - find -name Makefile.in | xargs rm -f ; \ - rm -f configure ABOUT-NLS ; \ - rm -rf m4 ; \ - cd config; rm -f `cat ../.gitignore`; cd .. ; \ - cd po; rm -f `cat .gitignore`; cd .. ; \ - fi - ENABLE_ALL = --enable-elvtune --enable-init --enable-kill --enable-last \ --enable-mesg --enable-partx --enable-raw --enable-rdev --enable-reset \ --enable-login-utils --enable-write diff --git a/README.devel b/README.devel index 38a9d5c8..d55e47ed 100644 --- a/README.devel +++ b/README.devel @@ -7,11 +7,8 @@ AUTOTOOLS: * "./autogen.sh" generates all necessary files (run it after checkout from git) - * "make mrproper" removes all generates files. You have to call autogen.sh - after mrproper. - - * "make distclean" is subset of mrproper. It removes all unnecessary files, - but code is still possible recompile by "./configure; make" + * "make distclean" removes all unnecessary files, but code is still possible + recompile by "./configure; make" * "make dist-gzip" (or -bzip2) creates tarball which is possible use without autogen.sh @@ -24,7 +21,7 @@ PATCHES: * diff -u - * don't include generated (autotools) stuff to your patches + * don't include generated (autotools) stuff to your patches (use git-clean [-X]) * patches are delivered via email only. Downloading them from internet servers is a pain.