summaryrefslogtreecommitdiff
path: root/Makefile.top
AgeCommit message (Collapse)AuthorFilesLines
2012-11-06[mono] install mono before finalizing filelistPetr Mladek1-1/+1
it was mistake created by porting mono stuff for LO-3.6 Change-Id: I498f7cb7f6317dabd94798dc94db57adf304e5f1
2012-10-13[mono] mono-installation.diff: add mono supportPetr Mladek1-0/+1
also move mono_loader.*.uno.so into the mono subpackage where it belongs to Conflicts: bin/distro-install-file-lists solenv/gbuild/extensions/post_AuxTargets.mk Change-Id: I681543edb6a27e16c66badc7e9e11743833f2fe3
2012-07-30'make build' again generates .msi on windowsLuboš Luňák1-2/+2
This is a partial revert of 0ec45dc41dd4872482b817387f253d6fab6bf20c , mainly for tinderbox nightlies. The .zip for dev-install is built only in dev-install target. But IMO the build target is broken this way too, I don't see why the .msi has to be built already there and not in some install or make-msi or whatever target (it's pointless in build target for a developer build). Change-Id: Ifd63066499b67fa446127193b243d893d497b451 (cherry picked from commit 1bdb0801eb9315a3f844aa0200f001e667953483) Signed-off-by: Michael Stahl <mstahl@redhat.com>
2012-07-30let make dev-install do something useful on MSVCMichael Stahl1-1/+7
Forcing creation of second installation set is perhaps not ideal, but i have no idea how that installer perl crud work and at least it gives something to run tests against. Change-Id: I506160013de23f76128c9e39b4f3bacc6e32cc7a (cherry picked from commit 0ec45dc41dd4872482b817387f253d6fab6bf20c) Signed-off-by: Miklos Vajna <vmiklos@suse.cz>
2012-07-02src.downloaded should depend on bin/repo-listMichael Stahl1-1/+1
Change-Id: I5a4d86b218164f864a02cc0d80ffa49d143ac3f1 (cherry picked from commit 06a2859dba3418d36e76b054303025efbcabc1c2) Signed-off-by: Michael Stahl <mstahl@redhat.com>
2012-06-08fix build verbosityRene Engelhard1-1/+1
Change-Id: I55d944652de2c716fd1548e5ee64a10c2fb645e0 Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
2012-06-04Replace the module icc functionality by a use of lcms2Fridrich Štrba1-1/+0
Change-Id: I989af1147711f0175bf889bc55043b2d84a49b38
2012-06-01remotebridges is converted tooDavid Tardon1-1/+1
Change-Id: Iec0feb10d3de2f4c740fb857cb9fa145437740f2
2012-05-29shell is gbuildifiedMatúš Kukan1-1/+1
Change-Id: Ia40e317a69883c578a349035604afb5a5dad4c86
2012-05-29fix after mergeDavid Tardon1-1/+1
Change-Id: Icd95b14777ccc428440971ab03aa3ad65e3d379f
2012-05-29gbuildize scp2David Tardon1-1/+1
Change-Id: If9a0906a76943160cfdbd647b26a801bc4389615
2012-05-29gbuildize reportbuilderDavid Tardon1-1/+1
2012-05-29switch connectivity to gbuildDavid Tardon1-1/+1
Change-Id: I37e6706ff244c9cc21b0826e61ef5d7cd72b3566
2012-05-20gbuildize solenvDavid Tardon1-1/+1
Change-Id: I6e0758e543a89f593a1b0432b28b4c9768993af7
2012-05-20gbuildize x11_extensionsDavid Tardon1-1/+1
Change-Id: I4362106ac5d221241eafdf44705ca5553ac7013c
2012-05-16improve make invocationMatúš Kukan1-2/+2
Change-Id: I9dbe77062df3a9b02dab0f5755c0e616829fa125
2012-05-15split up top-level Makefile:Michael Stahl1-0/+504
The top-level Makefile invokes autogen.sh (and thereby configure) in an environment which is polluted by config_host.mk; this causes at least the problem that following a "make clean", the bootstrap script will not copy dmake to its destination because BUILD_DMAKE=NO is set from config_host.mk, which is apparently due to the PATH being polluted from config_host.mk, so configure finds the dmake in the build tree. So split up top-level Makefile into Makefile, which invokes autogen.sh, and Makefile.top, which does everything else.