b2ade3e63e
...that directly generates one large .cxx Change-Id: I046539b83f8fde5eda7168c93a8b819137399665 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162343 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
72 lines
2.5 KiB
Makefile
72 lines
2.5 KiB
Makefile
# -*- 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/.
|
|
#
|
|
|
|
.PHONY : $(call gb_UnoApi_get_clean_target,%)
|
|
$(call gb_UnoApi_get_clean_target,%) :
|
|
$(call gb_Helper_abbreviate_dirs,\
|
|
rm -f $(call gb_UnoApi_get_target,$*))
|
|
|
|
# call gb_UnoApi_UnoApi,api
|
|
define gb_UnoApi_UnoApi
|
|
$(call gb_UnoApiTarget_UnoApiTarget,$(1),$(1))
|
|
$(call gb_UnoApiHeadersTarget_UnoApiHeadersTarget,$(1))
|
|
|
|
$(call gb_UnoApi_get_target,$(1)) :| $(dir $(call gb_UnoApi_get_target,$(1))).dir
|
|
$(call gb_UnoApi_get_target,$(1)) : $(call gb_UnoApiTarget_get_target,$(1))
|
|
$(call gb_UnoApi_get_target,$(1)) :| $(call gb_UnoApiHeadersTarget_get_target,$(1))
|
|
$(call gb_UnoApi_get_clean_target,$(1)) : $(call gb_UnoApiTarget_get_clean_target,$(1))
|
|
$(call gb_UnoApi_get_clean_target,$(1)) : $(call gb_UnoApiHeadersTarget_get_clean_target,$(1))
|
|
|
|
$(call gb_Deliver_add_deliverable,$(call gb_UnoApi_get_target,$(1)),$(call gb_UnoApiTarget_get_target,$(1)),$(1))
|
|
|
|
$$(eval $$(call gb_Module_register_target,$(call gb_UnoApi_get_target,$(1)),$(call gb_UnoApi_get_clean_target,$(1))))
|
|
$(call gb_Helper_make_userfriendly_targets,$(1),UnoApi)
|
|
|
|
endef
|
|
|
|
# For enum types, plain struct types, polymorphic struct type templates,
|
|
# exception types, interface types, typedefs, and constant groups:
|
|
define gb_UnoApi_add_idlfiles
|
|
$(call gb_UnoApiTarget_add_idlfiles,$(1),$(2),$(3))
|
|
$(call gb_UnoApiHeadersTarget_add_headerfiles,$(1),$(2),$(addsuffix .hpp,$(3)))
|
|
$(call gb_UnoApiHeadersTarget_add_headerfiles,$(1),$(2),$(addsuffix .hdl,$(3)))
|
|
|
|
endef
|
|
|
|
# For single-interface--based services and interface-based singletons:
|
|
define gb_UnoApi_add_idlfiles_nohdl
|
|
$(call gb_UnoApiTarget_add_idlfiles,$(1),$(2),$(3))
|
|
$(call gb_UnoApiHeadersTarget_add_headerfiles,$(1),$(2),$(addsuffix .hpp,$(3)))
|
|
|
|
endef
|
|
|
|
# For accumulation-based services and service-based singletons:
|
|
define gb_UnoApi_add_idlfiles_noheader
|
|
$(call gb_UnoApiTarget_add_idlfiles,$(1),$(2),$(3))
|
|
|
|
endef
|
|
|
|
define gb_UnoApi__use_api
|
|
$(call gb_UnoApiTarget_use_api,$(1),$(2))
|
|
$(call gb_UnoApiHeadersTarget_use_api,$(1),$(2))
|
|
$(call gb_UnoApi_get_target,$(1)) :| $(call gb_UnoApi_get_target,$(2))
|
|
|
|
endef
|
|
|
|
define gb_UnoApi_use_api
|
|
$(foreach rdb,$(2),$(call gb_UnoApi__use_api,$(1),$(rdb)))
|
|
|
|
endef
|
|
|
|
define gb_UnoApi_set_reference_rdbfile
|
|
$(call gb_UnoApiTarget_set_reference_rdbfile,$(1),$(2))
|
|
|
|
endef
|
|
|
|
# vim: set noet sw=4 ts=4:
|