From 5d89ef7bf94d8a708a1159be22eb1cf458a1d101 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sat, 6 Dec 2008 04:03:08 +0100 Subject: 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. --- autogen.sh | 46 +++++++++++++++++++++++++++++++--------------- 1 file changed, 31 insertions(+), 15 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index ef3f579cbd..926ca7ec92 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 -- cgit v1.2.3-54-g00ecf