diff options
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/acprep b/acprep deleted file mode 100755 index 36193dea..00000000 --- a/acprep +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -glibtoolize --automake -f -c -aclocal -autoheader -touch AUTHORS ChangeLog COPYING - -if [ "$1" = "--dist" ]; then - automake -acfi -else - automake -acf -fi - -autoconf - -INCDIRS="-I/sw/include -I/usr/include/httpd/xml -I/sw/include/python2.3" -INCDIRS="$INCDIRS -Wno-long-double" -LIBDIRS="-L/sw/lib -L/sw/lib/python2.3/config" - -if [ "$1" = "--debug" ]; then - ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" CXXFLAGS="-g" \ - --enable-debug --enable-python --disable-shared -elif [ "$1" = "--opt" ]; then - ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ - CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450 -fPIC" -elif [ "$1" = "--flat-opt" ]; then - ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ - CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450" --disable-shared -elif [ "$1" = "--safe-opt" ]; then - ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" \ - CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450 -DDEBUG_LEVEL=1" \ - --enable-python --disable-shared -elif [ "$1" = "--perf" ]; then - ./configure CPPFLAGS="$INCDIRS" LDFLAGS="$LIBDIRS" CXXFLAGS="-g -pg" -fi - -rm AUTHORS COPYING |