diff options
author | Andras Timar <atimar@suse.com> | 2012-11-11 18:24:14 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-11-11 18:24:14 +0100 |
commit | 06ec1c089519ef3249464aa09eadf03a8db93a39 (patch) | |
tree | 85b2eb6d8ba6ca95e18e1ff82151224cb14106f6 /hyphen/Module_hyphen.mk | |
parent | 8e0d67bed54633d555a4601a5d79e2d5ba7ab2bb (diff) | |
parent | 3f899eae02eaad0b967de749fe09b869ba93ad6d (diff) |
Merge branch 'master' into feature/killsdf
Conflicts:
Repository.mk
RepositoryFixes.mk
connectivity/prj/build.lst
extensions/prj/build.lst
filter/prj/build.lst
fpicker/prj/build.lst
l10ntools/StaticLibrary_transex.mk
saxon/build.xml
shell/prj/build.lst
solenv/gbuild/AllLangResTarget.mk
solenv/gbuild/Configuration.mk
solenv/gbuild/UI.mk
ucb/source/ucp/webdav/webdavcontent.cxx
Diffstat (limited to 'hyphen/Module_hyphen.mk')
-rw-r--r-- | hyphen/Module_hyphen.mk | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/hyphen/Module_hyphen.mk b/hyphen/Module_hyphen.mk new file mode 100644 index 000000000000..2ab3245d17a3 --- /dev/null +++ b/hyphen/Module_hyphen.mk @@ -0,0 +1,32 @@ +# -*- 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/. +# + +$(eval $(call gb_Module_Module,hyphen)) + +ifneq ($(or $(filter NO,$(SYSTEM_HYPH)),$(filter TRUE,$(WITH_MYSPELL_DICTS))),) +$(eval $(call gb_Module_add_targets,hyphen,\ + UnpackedTarball_hyphen \ + ExternalPackage_hyphen \ +)) +ifeq ($(COM),MSC) + +ifeq ($(SYSTEM_HYPH),NO) +$(eval $(call gb_Module_add_targets,hyphen,\ + StaticLibrary_hyphen \ +)) +endif + +else +$(eval $(call gb_Module_add_targets,hyphen,\ + ExternalProject_hyphen \ +)) +endif +endif + +# vim: set noet sw=4 ts=4: |