diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-21 11:18:21 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-22 02:51:09 +0100 |
commit | ff8762e7fe006c7c79e0976b4cd331ef187f6481 (patch) | |
tree | f6d0953d5c8004d8d6f282cc0cc8e540f0ca19f8 /wscript_build | |
parent | e3e1cd86e9cb027057edc9eb164b8b84051243af (diff) | |
download | samba-ff8762e7fe006c7c79e0976b4cd331ef187f6481.tar.gz samba-ff8762e7fe006c7c79e0976b4cd331ef187f6481.tar.bz2 samba-ff8762e7fe006c7c79e0976b4cd331ef187f6481.zip |
s3build: recurse into source3/
we can now use common build rules
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'wscript_build')
-rw-r--r-- | wscript_build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wscript_build b/wscript_build index dea49b32c9..37abfd1b77 100644 --- a/wscript_build +++ b/wscript_build @@ -7,6 +7,11 @@ srcdir = "." import samba_version +# mark this as a top level build, for source3 rules +bld.env.toplevel_build = True +bld.env.use_intree_heimdal = True +bld.env.suffix3 = "3" + # create separate build groups for building the asn1 and et compiler, then # building the C from ASN1 and IDL, and finally the main build process bld.SETUP_BUILD_GROUPS() @@ -100,6 +105,7 @@ bld.RECURSE('source4/setup') bld.RECURSE('source4/scripting') bld.RECURSE('pidl') bld.RECURSE('lib') +bld.RECURSE('source3') # install some extra empty directories bld.INSTALL_DIRS("", "${LOCKDIR} ${SYSCONFDIR} ${LOCKDIR} ${PIDDIR} ${LOCALSTATEDIR}/lib ${PRIVATEDIR}/smbd.tmp/messaging") |