summaryrefslogtreecommitdiff
path: root/source4/main.mk
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r19575: Build static libs in bin/static rather than bin/Jelmer Vernooij1-1/+1
(This used to be commit c9b06ce5636c37ddb077513796a288d88f62c358)
2007-10-10r19574: Initial work towards supporting build of both shared and static ↵Jelmer Vernooij1-2/+1
libraries. (This used to be commit e24ec3aa1ada855401a714743518893d9506239c)
2007-10-10r19573: Move secrets.o into param/ (subsystems haven't been integrated yet).Jelmer Vernooij1-1/+0
(This used to be commit 8143de855c0b65346b2d8e59ecdb78952927de4a)
2007-10-10r19571: Add a USESHARED parameter (different from BLDSHARED) + two smallJelmer Vernooij1-1/+1
shared-library related fixes. (This used to be commit 8c7276b6c6ccebfbc60de978fcb2c23e7fbc12b5)
2007-10-10r19538: This is getting silly, but I needed an easy way to run 'make testenv'Andrew Bartlett1-0/+5
under valgrind. Andrew Bartlett (This used to be commit f2bdbacaa9796ba30689eae295199983cc352590)
2007-10-10r19507: Merge my DSO fixes branch. Building Samba's libraries as shared ↵Jelmer Vernooij1-1/+0
libraries works again now, by specifying --enable-dso to configure. (This used to be commit 7a01235067a4800b07b8919a6a475954bfb0b04c)
2007-10-10r19449: ldbbrowse: installation hopefully works now. "Developer" installationsDerrell Lipman1-0/+2
('configure.developer' or 'configure --enable-developer') may still have problems as I'm not sure I got all of the paths right for that. With the changes Tridge has made to the Main Menu in swat, given a non-developer installation, you should be able to get to ldbbrowse via: JSON/qooxdoo -> ldb browser Derrell (This used to be commit 2406af10791cd8545c598c8591a48de5515c7dc5)
2007-10-10r19358: Use subunit tests from the right location (fromJelmer Vernooij1-1/+1
$src/bin/torture when developing, $LIBDIR/torture when installed) (This used to be commit 4ae6380e6bb48e27e9947e149b3d079b3e293cc0)
2007-10-10r19350: Properly list LOCAL-TALLOC under the "LOCAL" header.Jelmer Vernooij1-5/+2
Support directories for subcategories in tests. Several small other fixes. (This used to be commit bde00d97068d559b025ab131ff698a82430d14b3)
2007-10-10r19343: Add support for external scripts/binaries that write results using theJelmer Vernooij1-1/+11
'subunit' protocol. This allows us to easily plug EJS scripts or binaries that can't depend on -ltorture into smbtorture. The protocol is very simple: - write "comments" to stderr Example output on stdout: test: foo success: foo test: bar success: bar test: blah failure: blah [ dummy.c:30: Expression 1 != 2 failed! ] test: blie skip: blie [ Iconv support not built in ] I've already converted the talloc testsuite. (This used to be commit e1742c14a247fabba969f8698108e73997d3f420)
2007-10-10r18783: fix make pchStefan Metzmacher1-1/+1
metze (This used to be commit e2b16a09b3363d3a72edce03724cb05204f2a350)
2007-10-10r18780: Add convenience "make testenv" to launch the xtermtest Andrew just ↵Jelmer Vernooij1-0/+3
added. (This used to be commit e2cf38eca0f6fd632a9f544837eea90d66fd9cc6)
2007-10-10r18545: if yapp isn't availabe touch the target file, as it is commited to svn,Stefan Metzmacher1-2/+4
to prevent rebuilding. we do make everything make everything make bin/smbtorture make test in the buildfarm and rebuilding parts isn't that nice metze (This used to be commit 212fa7977d514f81ce4301902a8038869ee02b4e)
2007-10-10r18338: this isn't needed anymoreStefan Metzmacher1-4/+0
metze (This used to be commit 91800fd80c1763157f9bfded8f10e2d8c9a04cd2)
2007-10-10r18333: $< is broken in older BSD version:Stefan Metzmacher1-13/+20
when $@ is foo/bar.o, $< could be torture/foo/bar.c if it also exists. So better use $* which is foo/bar to get foo/bar.c metze (This used to be commit 7aad9f81d927778bd3da6a37afc0489f1fefdc58)
2007-10-10r18329: print out special make variables when failing, to track down theStefan Metzmacher1-0/+3
build failures on older BSD systems with broken make metze (This used to be commit 7edb40569a5b5c971894a5e753638eeccef15dea)
2007-10-10r18267: print out the failing command for .ho files tooStefan Metzmacher1-4/+7
metze (This used to be commit 25dc4557fff940aa4cc46df59f4c5a72b7518117)
2007-10-10r18265: print out the failling commandStefan Metzmacher1-1/+4
metze (This used to be commit 9d2ab28ba1a119dff1a97147934c03e712c7148d)
2007-10-10r18264: print the full list of flagsStefan Metzmacher1-3/+10
metze (This used to be commit ee5bd106945a013ba69c277a340c0961339983c6)
2007-10-10r18210: - reenable autodependenciesStefan Metzmacher1-3/+3
- and add -MT $@ to the dependency generation to notice changes in depdendecies of header files you may need a 'make clean' or at least you need to remove heimdal_build/replace.hd metze (This used to be commit 5ecf98cc189039023ff0a97f43eba7fb2c2cdc46)
2007-10-10r18154: try to get the heimdal_build code to use libreplace in a better wayAndrew Tridgell1-1/+1
(chasing down build failures ...) added showflags as part of 'all' target, which makes tracking down problems easier in the build farm (This used to be commit d52aaccdf8a537dc8de8db7c30ff0ab076c4c63f)
2007-10-10r18120: Remove generating dependencies for .d files for now as this wasJelmer Vernooij1-3/+3
causing make to loop. (This used to be commit 35c8d39e6e30e3ba3dcf1db34c6256489a1a2f46)
2007-10-10r18095: correctly rebuild the dependencies not only the object fileStefan Metzmacher1-3/+3
metze (This used to be commit 8e0497c5d217470bef5bd537c5d2b7be9ae89602)
2007-10-10r17932: Fix header installation.Jelmer Vernooij1-2/+2
(This used to be commit d0b7c740c77c901960c6de80f0d3b77cd396946f)
2007-10-10r17768: This merges in the current version of Brad Henry's windows testingAndrew Tridgell1-0/+3
framework patch. There are some issues with the patch that I will discuss in a separate email to the list, but given the low (zero?) impact of the patch as it is, I think its better to integrate it now, then let Brad send some minor update patches later (This used to be commit 7232da0436ff1d84e419d268fee31a095bbb88b7)
2007-10-10r17357: - fix the buildStefan Metzmacher1-2/+0
- generate the IDL_NDR_* variables before using them (this was the reason I didn't noticed this error) metze (This used to be commit c493bc83ee31c8dac4943fdadf443b537af1f6f6)
2007-10-10r16561: - create version.h relative to srcdirStefan Metzmacher1-2/+5
- let version.h depend on VERSION - add a rule to manualy regenerate version.h e.g. after a svn up metze (This used to be commit 7167579cbfcda0a130f9eaf80d4783f4bd134802)
2007-10-10r16558: Add make rule to generate version.h. Metze, can you please review?James Peach1-0/+3
(This used to be commit 47b6a3d7f37faba7f8defbaf9a406f4bdf431615)
2007-10-10r15641: we know have source/version.hStefan Metzmacher1-3/+3
metze (This used to be commit c505ce9d3b9ce9c3db6652f8f9721ca95229d2ff)
2007-10-10r15584: List SWIG files as being updated when pidl runsJelmer Vernooij1-1/+1
(This used to be commit dcebba4ee8d38f6400f9d250141653e38ba9715e)
2007-10-10r15321: Reduce the size of rewrite.m4 a bit moreJelmer Vernooij1-0/+1
(This used to be commit c83e4b166534278c335254aa8890a50635bbf1b7)
2007-10-10r15292: fix the IDL_* variable namesStefan Metzmacher1-3/+4
metze (This used to be commit e8d69ff8d0bf4ccdc2be486f0516ef4fb7baeae7)
2007-10-10r15276: Fix path to perl on some hostsJelmer Vernooij1-1/+1
Fix perl warning (This used to be commit 50e184819d0f92da003c27c4d9adeeef3dfb55dd)
2007-10-10r15247: Get rid of patsubst macro as it is not supported by some makes and ↵Jelmer Vernooij1-10/+2
replace it with a perl script. This should fix the build on tru64 (This used to be commit b4e08b98a6a8ebfc4f22125b4474978e9384971c)
2007-10-10r15191: Avoid uint_t as it's not standard.Jelmer Vernooij1-2/+3
(This used to be commit 7af59357b94e3819415b3a9257be0ced745ce130)
2007-10-10r15157: Systems with argv limits can't handle the full list of $(DEP_FILE). ↵James Peach1-1/+2
Replace with the (hopefuly) equivalent find/rm sequence. (This used to be commit 2bce5c9465ebd245d153196fbedd764378c36827)
2007-10-10r15061: Use $(PERL) to run cflags.pl as actual perl binary might not be in ↵Alexander Bokovoy1-6/+6
/usr/bin (This used to be commit 7d5a91a667418b18bde9399ffc4c9852c422362a)
2007-10-10r15036: Add out of tree build support and see how buildfarm will respond to ↵Alexander Bokovoy1-18/+18
make constructs (This used to be commit 9329854489e2c231ffb7986d39009e0936873c11)
2007-10-10r15001: Add 'make dist'Jelmer Vernooij1-0/+5
(This used to be commit 16e67d04d40a156a60011bcf6247ebf6039bbf30)
2007-10-10r14950: make sure include/config.h is only updated when the content was changedStefan Metzmacher1-2/+2
metze (This used to be commit 2488ead8c3431be3014012a05de4ee57ff13aa93)
2007-10-10r14911: Allow easy modification of selftest subdirectory nameJelmer Vernooij1-9/+9
(This used to be commit 3de7b7fca1265fc465c895e15594659afd179ae5)
2007-10-10r14906: Move SWIG-specific files to scripting/swig/Jelmer Vernooij1-3/+2
(This used to be commit 222723e4434b85748aa82f192c5c4ce136933ce3)
2007-10-10r14852: See if all target platforms support multiple .SUFFIXES lines.Jelmer Vernooij1-4/+1
(This used to be commit 137ed99e3527c5240533d59b6b98d1f01a849046)
2007-10-10r14801: Move swig testing makefile fragment into swig's config.mk and out ofTim Potter1-3/+0
main.mk (This used to be commit 3721072fc531df2ffdc9ae323aa2e4e3d0fc58b7)
2007-10-10r14798: Get swig building again (by commenting out dcerpc stuff for now).Tim Potter1-0/+3
Add the start of a test framework for swigged functionality. (This used to be commit 3dfd0959f78518c021417f3f1158c51d70a1e88c)
2007-10-10r14730: Remove dependency information with 'make clean'Jelmer Vernooij1-4/+4
(This used to be commit 16da854eff726f11971aab8e62098044989e4ccc)
2007-10-10r14661: Install symlinks for shared librariesJelmer Vernooij1-2/+2
(This used to be commit 3286636dbb78485e57357a2e7c23579e808264b2)
2007-10-10r14606: Fix paths in developer mode. This allows 'make quicktest' to work whenJelmer Vernooij1-1/+1
building with --enable-dso (This used to be commit 614f062748d95a455d1a99a7444fdc0fe152f4e4)
2007-10-10r14586: Some small fixes, update TODO.Jelmer Vernooij1-8/+4
(This used to be commit 5673ee1182dbae1aac6891abdce0b5748a14989f)
2007-10-10r14582: No longer require 'make proto' when running without automatic ↵Jelmer Vernooij1-1/+1
dependencies. Don't create dependency files when running 'make clean' (This used to be commit 6414d0c04fce969d4400a013aeaa3fa75849e2de)