From 8be85ad170d5e1fa23606de9be2ae255296eab52 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Sat, 2 May 2015 14:45:15 +0200 Subject: Rename makefile to match target name Change-Id: Iba879e0c2c79fd1c307c3dfe45370dbbfd4ae998 --- helpcompiler/Executable_HelpIndexer.mk | 28 ++++++++++++++++++++++++++++ helpcompiler/Executable_HelpLinker.mk | 34 ++++++++++++++++++++++++++++++++++ helpcompiler/Executable_helpindexer.mk | 28 ---------------------------- helpcompiler/Executable_helplinker.mk | 34 ---------------------------------- helpcompiler/Module_helpcompiler.mk | 4 ++-- 5 files changed, 64 insertions(+), 64 deletions(-) create mode 100644 helpcompiler/Executable_HelpIndexer.mk create mode 100644 helpcompiler/Executable_HelpLinker.mk delete mode 100644 helpcompiler/Executable_helpindexer.mk delete mode 100644 helpcompiler/Executable_helplinker.mk (limited to 'helpcompiler') diff --git a/helpcompiler/Executable_HelpIndexer.mk b/helpcompiler/Executable_HelpIndexer.mk new file mode 100644 index 000000000000..5fee9f7a64f4 --- /dev/null +++ b/helpcompiler/Executable_HelpIndexer.mk @@ -0,0 +1,28 @@ +# -*- 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_Executable_Executable,HelpIndexer)) + +$(eval $(call gb_Executable_use_libraries,HelpIndexer,\ + sal \ + helplinker \ +)) + +$(eval $(call gb_Executable_use_externals,HelpIndexer,\ + expat \ + libxslt \ + libxml2 \ + clucene \ +)) + +$(eval $(call gb_Executable_add_exception_objects,HelpIndexer,\ + helpcompiler/source/HelpIndexer_main \ +)) + +# vim:set noet sw=4 ts=4: diff --git a/helpcompiler/Executable_HelpLinker.mk b/helpcompiler/Executable_HelpLinker.mk new file mode 100644 index 000000000000..2825aadf3b2e --- /dev/null +++ b/helpcompiler/Executable_HelpLinker.mk @@ -0,0 +1,34 @@ +# -*- 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_Executable_Executable,HelpLinker)) + +$(eval $(call gb_Executable_set_include,HelpLinker,\ + -I$(SRCDIR)/helpcompiler/inc \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_Executable_use_libraries,HelpLinker,\ + sal \ + helplinker \ +)) + +$(eval $(call gb_Executable_use_externals,HelpLinker,\ + boost_headers \ + expat \ + libxslt \ + libxml2 \ + clucene \ +)) + +$(eval $(call gb_Executable_add_exception_objects,HelpLinker,\ + helpcompiler/source/HelpLinker_main \ +)) + +# vim:set noet sw=4 ts=4: diff --git a/helpcompiler/Executable_helpindexer.mk b/helpcompiler/Executable_helpindexer.mk deleted file mode 100644 index 5fee9f7a64f4..000000000000 --- a/helpcompiler/Executable_helpindexer.mk +++ /dev/null @@ -1,28 +0,0 @@ -# -*- 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_Executable_Executable,HelpIndexer)) - -$(eval $(call gb_Executable_use_libraries,HelpIndexer,\ - sal \ - helplinker \ -)) - -$(eval $(call gb_Executable_use_externals,HelpIndexer,\ - expat \ - libxslt \ - libxml2 \ - clucene \ -)) - -$(eval $(call gb_Executable_add_exception_objects,HelpIndexer,\ - helpcompiler/source/HelpIndexer_main \ -)) - -# vim:set noet sw=4 ts=4: diff --git a/helpcompiler/Executable_helplinker.mk b/helpcompiler/Executable_helplinker.mk deleted file mode 100644 index 2825aadf3b2e..000000000000 --- a/helpcompiler/Executable_helplinker.mk +++ /dev/null @@ -1,34 +0,0 @@ -# -*- 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_Executable_Executable,HelpLinker)) - -$(eval $(call gb_Executable_set_include,HelpLinker,\ - -I$(SRCDIR)/helpcompiler/inc \ - $$(INCLUDE) \ -)) - -$(eval $(call gb_Executable_use_libraries,HelpLinker,\ - sal \ - helplinker \ -)) - -$(eval $(call gb_Executable_use_externals,HelpLinker,\ - boost_headers \ - expat \ - libxslt \ - libxml2 \ - clucene \ -)) - -$(eval $(call gb_Executable_add_exception_objects,HelpLinker,\ - helpcompiler/source/HelpLinker_main \ -)) - -# vim:set noet sw=4 ts=4: diff --git a/helpcompiler/Module_helpcompiler.mk b/helpcompiler/Module_helpcompiler.mk index f4e0923a50db..7bb53abf0b9b 100644 --- a/helpcompiler/Module_helpcompiler.mk +++ b/helpcompiler/Module_helpcompiler.mk @@ -10,8 +10,8 @@ $(eval $(call gb_Module_Module,helpcompiler)) $(eval $(call gb_Module_add_targets,helpcompiler,\ - Executable_helpindexer \ - Executable_helplinker \ + Executable_HelpIndexer \ + Executable_HelpLinker \ Library_helplinker \ )) -- cgit