mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
72e1a39eff
This adds build rules for the top level directory based on the ones from source4. This is an intermediate step towards a combined top level build which will build both the Samba3 (bin/smbd, bin/nmbd etc) and Samba4 (bin/samba) binaries from a single build Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
15 lines
243 B
Bash
Executable File
15 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PREVPATH=`dirname $0`
|
|
|
|
WAF=./buildtools/bin/waf
|
|
|
|
# using JOBS=1 gives maximum compatibility with
|
|
# systems like AIX which have broken threading in python
|
|
JOBS=1
|
|
export JOBS
|
|
|
|
cd . || exit 1
|
|
$WAF configure "$@" || exit 1
|
|
cd $PREVPATH
|