diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2013-02-10 14:26:14 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2013-02-18 15:44:01 +0000 |
commit | a811e047be0bb30a7648d540f9a9c8a5bdae8f67 (patch) | |
tree | b7a22e2bb27209e9ac7fce039e83d4bfbaf3ffac /Makefile.cross | |
parent | 7f51d6fa0d6d38532cee447ffc65dea4b3583d7c (diff) |
Make building of cross-toolset build.pl and dmake free.
Adds more modules to Module_cross_*.mk.
Change-Id: I9a7a12ff07649262355bfa82bdf09fbf93b1530e
Reviewed-on: https://gerrit.libreoffice.org/2240
Reviewed-by: Matúš Kukan <matus.kukan@gmail.com>
Tested-by: Matúš Kukan <matus.kukan@gmail.com>
Diffstat (limited to 'Makefile.cross')
-rw-r--r-- | Makefile.cross | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.cross b/Makefile.cross new file mode 100644 index 000000000000..d3af6804a0af --- /dev/null +++ b/Makefile.cross @@ -0,0 +1,17 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))config_build.mk + +gb_Side := build +include $(SOLARENV)/gbuild/gbuild.mk + +$(eval $(call gb_Module_make_global_targets,$(SRCDIR)/Module_cross_tail_build.mk)) + +# vim: set noet sw=4 ts=4: |