aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-12-06 04:03:08 +0100
committerKay Sievers <kay.sievers@vrfy.org>2008-12-06 04:03:08 +0100
commit5d89ef7bf94d8a708a1159be22eb1cf458a1d101 (patch)
treeba18b54b2d0aeb4ed5e31013e89a603b7e7398a1 /autogen.sh
parent626ed3b6c119090dab7bd7491c423ef8ef93c94b (diff)
downloadudev-5d89ef7bf94d8a708a1159be22eb1cf458a1d101.tar.gz
make: do not delete autotools generated file with distclean
[...] running the command `make maintainer-clean' should not delete `configure' even if `configure' can be remade using a rule in the Makefile. More generally, `make maintainer-clean' should not delete anything that needs to exist in order to run `configure' and then begin to build the program. This is the only exception; `maintainer-clean' should delete everything else that can be rebuilt.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh46
1 files changed, 31 insertions, 15 deletions
diff --git a/autogen.sh b/autogen.sh
index ef3f579c..926ca7ec 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -47,18 +47,34 @@ CFLAGS="-g -Wall \
-Wpointer-arith -Wsign-compare -Wchar-subscripts \
-Wstrict-prototypes -Wshadow"
-if test -z "$1" -o "$1" = "install"; then
- args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux"
- args="$args --with-libdir-name=lib/$(gcc -print-multi-os-directory)"
- CFLAGS="$CFLAGS -O2"
-elif test "$1" = "devel" ; then
- args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux --enable-debug"
- args="$args --with-libdir-name=lib/$(gcc -print-multi-os-directory)"
- CFLAGS="$CFLAGS -O0"
-else
- args=$@
-fi
-echo " configure: $args"
-echo
-export CFLAGS
-./configure $args
+args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux"
+libdir=$(basename $(cd /lib/$(gcc -print-multi-os-directory); pwd))
+
+case "$1" in
+ *install|"")
+ args="$args --with-libdir-name=$libdir"
+ export CFLAGS="$CFLAGS -O2"
+ echo " configure: $args"
+ echo
+ ./configure $args
+ ;;
+ *devel)
+ args="$args --enable-debug --with-libdir-name=$libdir"
+ export CFLAGS="$CFLAGS -O0"
+ echo " configure: $args"
+ echo
+ ./configure $args
+ ;;
+ *clean)
+ ./configure
+ make maintainer-clean
+ find . -name Makefile.in | xargs -r rm
+ rm -f depcomp aclocal.m4 config.h.in configure install-sh
+ rm -f missing config.guess config.sub ltmain.sh
+ exit 0
+ ;;
+ *)
+ echo "Usage: $0 [--install|--devel|--clean]"
+ exit 1
+ ;;
+esac