chiark / gitweb /
volume_id: btrfs - update format
[elogind.git] / autogen.sh
index b01012eb2efd9d9a98bc30d43dbf913ba457028a..926ca7ec9294eee4ca9fa4fdb9e2c7f406ab58f8 100755 (executable)
@@ -1,11 +1,5 @@
 #!/bin/sh -e
 
-(autopoint --version) < /dev/null > /dev/null 2>&1 || {
-       echo
-       echo "You must have autopoint installed to generate the build system.."
-       echo
-       exit 1
-}
 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
        echo
        echo "You must have autoconf installed to generate the build system."
@@ -47,11 +41,40 @@ autoheader
 echo "   automake:   $(automake --version | head -1)"
 automake --add-missing
 
-if test -z "$@"; then
-       args="--prefix=/usr --exec-prefix= --sysconfdir=/etc"
-else
-       args=$@
-fi
-echo "   configure:  $args"
-echo
-./configure $args
+CFLAGS="-g -Wall \
+-Wmissing-declarations -Wmissing-prototypes \
+-Wnested-externs -Wpointer-arith \
+-Wpointer-arith -Wsign-compare -Wchar-subscripts \
+-Wstrict-prototypes -Wshadow"
+
+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