2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-12-18 01:28:13 +01:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-18 01:28:13 +01:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# 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/.
|
2011-12-18 01:28:13 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2013-04-24 16:46:01 +02:00
|
|
|
$(eval $(call gb_WinResTarget_WinResTarget,so_activex))
|
2011-12-18 01:28:13 +01:00
|
|
|
|
2013-04-24 16:46:01 +02:00
|
|
|
$(eval $(call gb_WinResTarget_use_custom_headers,so_activex,\
|
2012-04-30 17:09:13 +02:00
|
|
|
extensions/source/activex/idl \
|
|
|
|
))
|
|
|
|
|
2013-01-03 15:36:20 +01:00
|
|
|
ifneq ($(ENABLE_DBGUTIL),TRUE)
|
2013-04-24 16:46:01 +02:00
|
|
|
$(eval $(call gb_WinResTarget_add_defs,so_activex,\
|
2011-12-18 01:28:13 +01:00
|
|
|
-DPRODUCT \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2013-04-24 16:46:01 +02:00
|
|
|
$(eval $(call gb_WinResTarget_set_rcfile,so_activex,extensions/source/activex/so_activex))
|
2011-12-18 01:28:13 +01:00
|
|
|
|
2013-04-24 16:46:01 +02:00
|
|
|
$(eval $(call gb_WinResTarget_add_defs,so_activex,\
|
2011-12-18 01:28:13 +01:00
|
|
|
$$(DEFS) \
|
2014-06-02 00:01:48 +02:00
|
|
|
-DSO_ACTIVEX_TLB=\"$(subst /,"\\\\",$(WORKDIR)/CustomTarget/extensions/source/activex/idl/so_activex.tlb\") \
|
2011-12-18 01:28:13 +01:00
|
|
|
))
|
2011-12-19 22:09:48 +01:00
|
|
|
|
2013-01-26 22:19:07 +01:00
|
|
|
# vim:set noet sw=4 ts=4:
|