summaryrefslogtreecommitdiff
path: root/buildtools/scripts
AgeCommit message (Collapse)AuthorFilesLines
2010-05-05build: added a distcheck targetAndrew Tridgell1-0/+3
2010-05-05build: exit with an error if waf configure failsAndrew Tridgell1-2/+2
We don't want configure in the build farm to show green when it fails
2010-04-26build: automatically run autogen-waf.sh when neededAndrew Tridgell1-4/+2
2010-04-23build: use 'waf distclean' for make distcleanAndrew Tridgell1-2/+2
this cleans up the more than rm -rf bin
2010-04-22build: we don't need this makefile magic any moreAndrew Tridgell1-2/+2
The waf build now checks for all A=B variables passed via make and sets the same waf internal variable. This means all waf options are available via make. Removing this from the Makefile makes us less reliant on a modern version of make. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-20build: include uninitialised data in the ABI symbolsAndrew Tridgell1-1/+1
This is needed for symbols like tdb_null in tdb, which are part of the public ABI Pair-Programmed-With: Rusty Russell <rusty@samba.org>
2010-04-18build: don't depend on the word size of nm outputAndrew Tridgell1-1/+1
the first column varies in length for different architectures
2010-04-18build: added a script for generating ABI signatures from shared librariesAndrew Tridgell1-0/+20
2010-04-14build: try to honor MAKEFLAGS from makeAndrew Tridgell1-6/+1
This means "make -j" and "make -k" now do roughly what is expected make -j will use the number of CPUs on the system, regardless of the number after the -j (as MAKEFLAGS doesn't contain that value). make -k will will continue on errors
2010-04-13build: cope with spaces in options passed to ./configureAndrew Tridgell1-1/+1
2010-04-12build: use a common autogen-waf.sh for all buildsAndrew Tridgell1-0/+27
the symlink will get updated with the right target when waf dist is used in each directory
2010-04-10s4:autogen-waf: generate 'Makefile' instead of 'makefile'Stefan Metzmacher1-0/+7
This hopefully fixes the build on MacOS 10. metze
2010-04-08s4:WAF buildsystem - support out of "source4" directory buildsMatthias Dieter Wallnöfer1-0/+3
Bug: https://bugzilla.samba.org/show_bug.cgi?id=4081 With this patch we are able to invoke s4 builds from the outside of the "source4" directory (but the target remains the "source4/bin" path). One constraint: all commands: "autogen-waf.sh", "configure", "make" have to be run from the same directory! Regarding "make": you have to run it using "make -C <source4 path> [targets]" if the invoke directory is not "source4" itself.
2010-04-08s4-waf: Add dist target.Jelmer Vernooij1-0/+3
2010-04-07Support 'make test TESTS=foo' again.Jelmer Vernooij1-2/+2
2010-04-06s4-waf: new autogen-waf.shAndrew Tridgell2-0/+59
this one will work with the tdb, talloc, etc directories