chiark / gitweb /
add "devel" and "install" switches to autogen.sh
authorKay Sievers <kay.sievers@vrfy.org>
Sat, 1 Nov 2008 19:57:22 +0000 (20:57 +0100)
committerKay Sievers <kay.sievers@vrfy.org>
Sat, 1 Nov 2008 19:57:22 +0000 (20:57 +0100)
autogen.sh

index b6db9f919cd932750274c1fa54dcae7ab740c81f..b4c853f9775ab05b0bb8bcbdd186c8f08ce8b7e0 100755 (executable)
@@ -41,17 +41,24 @@ autoheader
 echo "   automake:   $(automake --version | head -1)"
 automake --add-missing
 
 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"
 -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
 else
        args=$@
 fi
 echo "   configure:  $args"
 echo
+export CFLAGS
 ./configure $args
 ./configure $args