aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-11-01 20:57:22 +0100
committerKay Sievers <kay.sievers@vrfy.org>2008-11-01 20:57:22 +0100
commitb929e83acc964cc1648f5f536f1a776f8d8add46 (patch)
tree49b8056ffe10117deca609c647264a4fbe33f949 /autogen.sh
parent86b5778857522087e74182f26f0e565adea0c699 (diff)
downloadudev-b929e83acc964cc1648f5f536f1a776f8d8add46.tar.gz
add "devel" and "install" switches to autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh15
1 files changed, 11 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index b6db9f91..b4c853f9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -41,17 +41,24 @@ autoheader
echo " automake: $(automake --version | head -1)"
automake --add-missing
-if test -z "$@"; then
- args="--prefix=/usr --exec-prefix= --sysconfdir=/etc --with-selinux --enable-debug"
- args="$args --with-libdir-name=$(basename $(gcc -print-multi-os-directory))"
- export CFLAGS="-g -Wall \
+CFLAGS="-g -Wall \
-Wmissing-declarations -Wmissing-prototypes \
-Wnested-externs -Wpointer-arith \
-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=$(basename $(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=$(basename $(gcc -print-multi-os-directory))"
+ CFLAGS="$CFLAGS -O0"
else
args=$@
fi
echo " configure: $args"
echo
+export CFLAGS
./configure $args