summaryrefslogtreecommitdiff
path: root/winaccessibility/CustomTarget_ia2_idl.mk
blob: 14456227ce49041581b65a6a6db32a12196725f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- 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_CustomTarget_CustomTarget,winaccessibility/ia2/idl))

iaccessible2_DIR := $(gb_UnpackedTarball_workdir)/IAccessible2
wina11y_COMIDLDIR := $(gb_CustomTarget_workdir)/winaccessibility/ia2/idl
wina11y_SOURCE := $(SRCDIR)/winaccessibility/source/UAccCOMIDL

# We cannot depend on *.tlb because they only produced by IDL compiler
# if idl contains 'library' statement.
$(call gb_CustomTarget_get_target,winaccessibility/ia2/idl) : \
	$(wina11y_COMIDLDIR)/UAccCOM.h \
	$(wina11y_COMIDLDIR)/defines.h \
	$(wina11y_COMIDLDIR)/ia2_api_all.h

$(wina11y_COMIDLDIR)/ia2_api_all.h: $(call gb_ExternalProject_get_target,IAccessible2) \
		| $(wina11y_COMIDLDIR)/.dir
	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),IDL,1)
	$(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),IDL)
	$(call gb_Helper_abbreviate_dirs, \
	midl.exe \
		-tlb $(wina11y_COMIDLDIR)/ia2_api_all.tlb \
		-h $(wina11y_COMIDLDIR)/ia2_api_all.h \
		-iid $(wina11y_COMIDLDIR)/ia2_api_all_i.c \
		-dlldata $(wina11y_COMIDLDIR)/dlldata.c \
		-proxy $(wina11y_COMIDLDIR)/ia2_api_all_p.c \
		-Oicf \
		$(SOLARINC) \
		-I $(wina11y_SOURCE) \
		-I $(iaccessible2_DIR) \
		$(iaccessible2_DIR)/ia2_api_all.idl)
	$(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),IDL)

$(wina11y_COMIDLDIR)/%.h : $(wina11y_SOURCE)/%.idl \
		$(call gb_ExternalProject_get_target,IAccessible2) \
		| $(wina11y_COMIDLDIR)/.dir
	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),IDL,1)
	$(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),IDL)
	$(call gb_Helper_abbreviate_dirs, \
	midl.exe \
		-tlb $(wina11y_COMIDLDIR)/$*.tlb \
		-h $(wina11y_COMIDLDIR)/$*.h \
		-iid $(wina11y_COMIDLDIR)/$*_i.c \
		-dlldata $(wina11y_COMIDLDIR)/dlldata.c \
		-proxy $(wina11y_COMIDLDIR)/$*_p.c \
		-Oicf \
		$(SOLARINC) \
		-I $(wina11y_SOURCE) \
		-I $(iaccessible2_DIR) \
		$<)
	$(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),IDL)

# vim:set shiftwidth=4 tabstop=4 noexpandtab:
a>Andras Timar 2013-04-30remove unused product variables from Windows installerAndras Timar 2013-02-22s/the the/the/Tor Lillqvist 2012-11-15re-base on ALv2 code. Includes:Michael Meeks 2012-09-26use utf-8 instead of legacy code pages in all msi tables (related: fdo#39595)Andras Timar 2012-09-23followup of bccb30a0Andras Timar 2012-09-09fdo#52946 We don't need the productname multiple times in install dialogsAndras Timar 2012-09-08remove SelfReg table from MSIAndras Timar 2012-05-20remove Win9x specific conditionsAndras Timar 2012-05-07fix condition for SetupCompleteSuccessAndras Timar 2012-05-07don't refer to a deleted controlAndras Timar 2012-05-07remove unused checkboxes from Windows installerAndras Timar 2012-04-26remove unused icons from Windows installerAndras Timar 2012-04-25fdo#47779 installer dialog header background should be whiteAndras Timar 2012-04-02PRODUCTNAME is not defined in this context, we need BRANDPACKAGEVERSIONAndras Timar 2012-03-23remove unused DatabaseFolder dialog from MSIAndras Timar 2012-03-20fix control order in MSI, this time for realAndras Timar 2012-03-20fix control order in MSIAndras Timar 2012-03-20Revert "remove last traces of serial number check from MSI"Andras Timar 2012-03-20remove last traces of serial number check from MSIAndras Timar 2012-03-20remove last traces of serial number check from MSIAndras Timar 2012-03-20remove unused License Agreement dialog from MSIAndras Timar 2012-03-20LibreOffice installer does not need Serial numberAndras Timar 2011-11-24Cleanup: remove unused artwork, consolidate remaining.Thorsten Behrens 2011-11-15Removed obsolete OOOBASEVERSION, OOOPACKAGEVERSION.Stephan Bergmann