summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-07-17 01:58:36 +0000
committerGerald Carter <jerry@samba.org>2003-07-17 01:58:36 +0000
commit04382a5266fd618e81d8ac454db9a04a1fda7c1b (patch)
treec882a2ef790317b9f01defbd72b4ff9e2ae17440
parent1caa6b23e417f77e7b38ecdfa47d9abe8c7b7d0e (diff)
downloadsamba-04382a5266fd618e81d8ac454db9a04a1fda7c1b.tar.gz
samba-04382a5266fd618e81d8ac454db9a04a1fda7c1b.tar.bz2
samba-04382a5266fd618e81d8ac454db9a04a1fda7c1b.zip
should not have been checked in. My fault
(This used to be commit af0efeeccfc6f4bc78c6baafd2bded404cc2a551)
-rwxr-xr-xsource3/build-me36
1 files changed, 0 insertions, 36 deletions
diff --git a/source3/build-me b/source3/build-me
deleted file mode 100755
index a5d3f32f70..0000000000
--- a/source3/build-me
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-umask 022
-
-## Build options
-CONFIGUREOPT="--enable-debug --enable-developer --with-pam --with-libsmbclient=no --with-static-modules"
-export CONFIGUREOPT
-
-./autogen.sh
-
-case "$1" in
- dmalloc)
- env CFLAGS="-Wall" ./configure \
- --enable-dmalloc \
- $CONFIGUREOPT
- ;;
- insure)
- env CFLAGS="-g" CC="insure" ./configure \
- $CONFIGUREOPT
- ;;
- ccache)
- env CFLAGS="-Wall" CC="ccache gcc" ./configure \
- $CONFIGUREOPT
- ;;
- *)
- env CFLAGS="-Wall" ./configure \
- $CONFIGUREOPT
- ;;
-esac
-
-## disable optimization
-sed 's/-O //g' Makefile | sed 's/-O2 //g' > Makefile.new; /bin/mv -f Makefile.new Makefile
-
-## build
-make proto
-make all modules