xref: /aoo42x/main/solenv/gbuild/platform/windows.mk (revision 42aba0ce)
17871dc3eSAndrew Rist#**************************************************************
27871dc3eSAndrew Rist#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
107871dc3eSAndrew Rist#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
127871dc3eSAndrew Rist#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
197871dc3eSAndrew Rist#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirGUI := WNT
25cdf0e10cSrcweirCOM := MSC
26cdf0e10cSrcweir
27cdf0e10cSrcweir# set tmpdir to some mixed case path, suitable for native tools
28cdf0e10cSrcweirgb_TMPDIR:=$(if $(TMPDIR),$(shell cygpath -m $(TMPDIR)),$(shell cygpath -m /tmp))
29cdf0e10cSrcweirgb_MKTEMP := mktemp --tmpdir=$(gb_TMPDIR) gbuild.XXXXXX
30cdf0e10cSrcweir
31cdf0e10cSrcweirgb_CC := cl
32cdf0e10cSrcweirgb_CXX := cl
33cdf0e10cSrcweirgb_LINK := link
34cdf0e10cSrcweirgb_AWK := awk
35cdf0e10cSrcweirgb_CLASSPATHSEP := ;
36cdf0e10cSrcweirgb_RC := rc
37cdf0e10cSrcweir
38cdf0e10cSrcweir# use CC/CXX if they are nondefaults
39cdf0e10cSrcweirifneq ($(origin CC),default)
40cdf0e10cSrcweirgb_CC := $(CC)
41cdf0e10cSrcweirgb_GCCP := $(CC)
42cdf0e10cSrcweirendif
43cdf0e10cSrcweirifneq ($(origin CXX),default)
44cdf0e10cSrcweirgb_CXX := $(CXX)
45cdf0e10cSrcweirendif
46cdf0e10cSrcweir
47cdf0e10cSrcweirgb_OSDEFS := \
48cdf0e10cSrcweir	-DWINVER=0x0500 \
49cdf0e10cSrcweir	-D_WIN32_IE=0x0500 \
50cdf0e10cSrcweir	-DNT351 \
51cdf0e10cSrcweir	-DWIN32 \
52cdf0e10cSrcweir	-DWNT \
53cdf0e10cSrcweir
54cdf0e10cSrcweirgb_COMPILERDEFS := \
55cdf0e10cSrcweir	-DMSC \
56cdf0e10cSrcweir	-D_CRT_NON_CONFORMING_SWPRINTFS \
57cdf0e10cSrcweir	-D_CRT_NONSTDC_NO_DEPRECATE \
58cdf0e10cSrcweir	-D_CRT_SECURE_NO_DEPRECATE \
59cdf0e10cSrcweir	-D_MT \
60b63233d8Sdamjan	-D_DLL \
61cdf0e10cSrcweir	-DBOOST_MEM_FN_ENABLE_CDECL \
62cdf0e10cSrcweir	-DCPPU_ENV=msci \
63cdf0e10cSrcweir	-DFULL_DESK \
64cdf0e10cSrcweir	-DM1500 \
65cdf0e10cSrcweir
66cdf0e10cSrcweirgb_CPUDEFS := -DINTEL -D_X86_=1
67cdf0e10cSrcweir
68cdf0e10cSrcweirgb_RCDEFS := \
69cdf0e10cSrcweir     -DWINVER=0x0400 \
70cdf0e10cSrcweir	 -DWIN32 \
71cdf0e10cSrcweir
72cdf0e10cSrcweirgb_RCFLAGS := \
73cdf0e10cSrcweir     -V
74cdf0e10cSrcweir
75cdf0e10cSrcweirgb_CFLAGS := \
76cdf0e10cSrcweir	-Gd \
77cdf0e10cSrcweir	-GR \
78cdf0e10cSrcweir	-Gs \
79cdf0e10cSrcweir	-GS \
80cdf0e10cSrcweir	-nologo \
81cdf0e10cSrcweir	-Wall \
82cdf0e10cSrcweir	-wd4005 \
83cdf0e10cSrcweir	-wd4061 \
84cdf0e10cSrcweir	-wd4127 \
85cdf0e10cSrcweir	-wd4180 \
86cdf0e10cSrcweir	-wd4189 \
87cdf0e10cSrcweir	-wd4191 \
88cdf0e10cSrcweir	-wd4217 \
89cdf0e10cSrcweir	-wd4250 \
90cdf0e10cSrcweir	-wd4251 \
91cdf0e10cSrcweir	-wd4255 \
92cdf0e10cSrcweir	-wd4275 \
93cdf0e10cSrcweir	-wd4290 \
94cdf0e10cSrcweir	-wd4294 \
95cdf0e10cSrcweir	-wd4350 \
96cdf0e10cSrcweir	-wd4355 \
97cdf0e10cSrcweir	-wd4365 \
98cdf0e10cSrcweir	-wd4503 \
99cdf0e10cSrcweir	-wd4505 \
100cdf0e10cSrcweir	-wd4511 \
101cdf0e10cSrcweir	-wd4512 \
102cdf0e10cSrcweir	-wd4514 \
103cdf0e10cSrcweir	-wd4611 \
104cdf0e10cSrcweir	-wd4619 \
105cdf0e10cSrcweir	-wd4625 \
106cdf0e10cSrcweir	-wd4626 \
107cdf0e10cSrcweir	-wd4640 \
108cdf0e10cSrcweir	-wd4668 \
109cdf0e10cSrcweir	-wd4675 \
110cdf0e10cSrcweir	-wd4692 \
111cdf0e10cSrcweir	-wd4710 \
112cdf0e10cSrcweir	-wd4711 \
113cdf0e10cSrcweir	-wd4738 \
114cdf0e10cSrcweir	-wd4786 \
115cdf0e10cSrcweir	-wd4800 \
116cdf0e10cSrcweir	-wd4820 \
117cdf0e10cSrcweir	-wd4826 \
118e5a7b9b2SHerbert Dürr	-Zc:wchar_t- \
119cdf0e10cSrcweir	-Zm500 \
120cdf0e10cSrcweir
121cdf0e10cSrcweirgb_CXXFLAGS := \
122cdf0e10cSrcweir	-Gd \
123cdf0e10cSrcweir	-GR \
124cdf0e10cSrcweir	-Gs \
125cdf0e10cSrcweir	-GS \
126cdf0e10cSrcweir	-Gy \
127cdf0e10cSrcweir	-nologo \
128cdf0e10cSrcweir	-Wall \
129cdf0e10cSrcweir	-wd4005 \
130cdf0e10cSrcweir	-wd4061 \
131cdf0e10cSrcweir	-wd4127 \
132cdf0e10cSrcweir	-wd4180 \
133cdf0e10cSrcweir	-wd4189 \
134cdf0e10cSrcweir	-wd4191 \
135cdf0e10cSrcweir	-wd4217 \
136cdf0e10cSrcweir	-wd4250 \
137cdf0e10cSrcweir	-wd4251 \
138cdf0e10cSrcweir	-wd4275 \
139cdf0e10cSrcweir	-wd4290 \
140cdf0e10cSrcweir	-wd4294 \
141cdf0e10cSrcweir	-wd4350 \
142cdf0e10cSrcweir	-wd4355 \
143cdf0e10cSrcweir	-wd4365 \
144cdf0e10cSrcweir	-wd4503 \
145cdf0e10cSrcweir	-wd4505 \
146cdf0e10cSrcweir	-wd4511 \
147cdf0e10cSrcweir	-wd4512 \
148cdf0e10cSrcweir	-wd4514 \
149cdf0e10cSrcweir	-wd4611 \
150cdf0e10cSrcweir	-wd4619 \
151cdf0e10cSrcweir	-wd4625 \
152cdf0e10cSrcweir	-wd4626 \
153cdf0e10cSrcweir	-wd4640 \
154cdf0e10cSrcweir	-wd4668 \
155cdf0e10cSrcweir	-wd4675 \
156cdf0e10cSrcweir	-wd4692 \
157cdf0e10cSrcweir	-wd4710 \
158cdf0e10cSrcweir	-wd4711 \
159cdf0e10cSrcweir	-wd4738 \
160cdf0e10cSrcweir	-wd4786 \
161cdf0e10cSrcweir	-wd4800 \
162cdf0e10cSrcweir	-wd4820 \
163cdf0e10cSrcweir	-wd4826 \
164e5a7b9b2SHerbert Dürr	-Zc:wchar_t- \
165cdf0e10cSrcweir	-Zm500 \
166cdf0e10cSrcweir
167cdf0e10cSrcweirgb_STDLIBS := \
168cdf0e10cSrcweir    uwinapi \
169cdf0e10cSrcweir    kernel32 \
170cdf0e10cSrcweir    msvcrt \
171cdf0e10cSrcweir    oldnames \
172cdf0e10cSrcweir
173cdf0e10cSrcweirifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE)
174cdf0e10cSrcweirgb_CFLAGS_WERROR := -WX
175cdf0e10cSrcweirgb_CXXFLAGS_WERROR := -WX
176cdf0e10cSrcweirendif
177cdf0e10cSrcweir
178cdf0e10cSrcweirgb_LinkTarget_EXCEPTIONFLAGS := \
179cdf0e10cSrcweir	-DEXCEPTIONS_ON \
180cdf0e10cSrcweir	-EHa \
181cdf0e10cSrcweir
182cdf0e10cSrcweirgb_PrecompiledHeader_EXCEPTIONFLAGS := $(gb_LinkTarget_EXCEPTIONFLAGS)
183cdf0e10cSrcweir
184cdf0e10cSrcweir
185cdf0e10cSrcweirgb_LinkTarget_NOEXCEPTIONFLAGS := \
186cdf0e10cSrcweir	-DEXCEPTIONS_OFF \
187cdf0e10cSrcweir
188cdf0e10cSrcweirgb_NoexPrecompiledHeader_NOEXCEPTIONFLAGS := $(gb_LinkTarget_NOEXCEPTIONFLAGS)
189cdf0e10cSrcweir
190cdf0e10cSrcweirgb_LinkTarget_LDFLAGS := \
191cdf0e10cSrcweir	-MACHINE:IX86 \
192cdf0e10cSrcweir	-NODEFAULTLIB \
193cdf0e10cSrcweir	$(patsubst %,-LIBPATH:%,$(filter-out .,$(subst ;, ,$(subst \,/,$(ILIB))))) \
194b63233d8Sdamjan
195b63233d8Sdamjan
196b63233d8Sdamjangb_DEBUG_CFLAGS := -Zi
197cdf0e10cSrcweir
198b63233d8Sdamjan# this does not use CFLAGS so it is not overridable
199cdf0e10cSrcweirifneq ($(ENABLE_CRASHDUMP),)
200cdf0e10cSrcweirgb_LinkTarget_LDFLAGS += -DEBUG
201cdf0e10cSrcweirgb_CFLAGS+=-Zi
202cdf0e10cSrcweirgb_CXXFLAGS+=-Zi
203cdf0e10cSrcweirendif
204cdf0e10cSrcweir
205cdf0e10cSrcweirifeq ($(gb_DEBUGLEVEL),2)
206cdf0e10cSrcweirgb_LinkTarget_LDFLAGS += -DEBUG
207b63233d8Sdamjangb_COMPILEROPTFLAGS :=
208cdf0e10cSrcweirelse
209cdf0e10cSrcweirgb_COMPILEROPTFLAGS := -Ob1 -Oxs -Oy-
210cdf0e10cSrcweirendif
211cdf0e10cSrcweir
212cdf0e10cSrcweirgb_COMPILERNOOPTFLAGS := -Od
213cdf0e10cSrcweir
214cdf0e10cSrcweir
215cdf0e10cSrcweir# Helper class
216cdf0e10cSrcweirgb_Helper_SRCDIR_NATIVE := $(shell cygpath -m $(SRCDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }')
217cdf0e10cSrcweirgb_Helper_WORKDIR_NATIVE := $(shell cygpath -m $(WORKDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }')
218cdf0e10cSrcweirgb_Helper_OUTDIR_NATIVE := $(shell cygpath -m $(OUTDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }')
219cdf0e10cSrcweirgb_Helper_REPODIR_NATIVE := $(shell cygpath -m $(REPODIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }')
220cdf0e10cSrcweir
221cdf0e10cSrcweirdefine gb_Helper_abbreviate_dirs_native
222cdf0e10cSrcweirR=$(gb_Helper_REPODIR_NATIVE) && $(subst $(REPODIR)/,$$R/,$(subst $(gb_Helper_REPODIR_NATIVE)/,$$R/,O=$(gb_Helper_OUTDIR_NATIVE) && W=$(gb_Helper_WORKDIR_NATIVE) && S=$(gb_Helper_SRCDIR_NATIVE))) && \
223cdf0e10cSrcweir$(subst $(REPODIR)/,$$R/,$(subst $(SRCDIR)/,$$S/,$(subst $(OUTDIR)/,$$O/,$(subst $(WORKDIR)/,$$W/,$(subst $(gb_Helper_REPODIR_NATIVE)/,$$R/,$(subst $(gb_Helper_SRCDIR_NATIVE)/,$$S/,$(subst $(gb_Helper_OUTDIR_NATIVE)/,$$O/,$(subst $(gb_Helper_WORKDIR_NATIVE)/,$$W/,$(1)))))))))
224cdf0e10cSrcweirendef
225cdf0e10cSrcweir
226cdf0e10cSrcweir# convert parametters filesystem root to native notation
227cdf0e10cSrcweir# does some real work only on windows, make sure not to
228cdf0e10cSrcweir# break the dummy implementations on unx*
229cdf0e10cSrcweirdefine gb_Helper_convert_native
230cdf0e10cSrcweir$(patsubst -I$(OUTDIR)%,-I$(gb_Helper_OUTDIR_NATIVE)%, \
231cdf0e10cSrcweir$(patsubst $(OUTDIR)%,$(gb_Helper_OUTDIR_NATIVE)%, \
232cdf0e10cSrcweir$(patsubst $(WORKDIR)%,$(gb_Helper_WORKDIR_NATIVE)%, \
233cdf0e10cSrcweir$(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \
234cdf0e10cSrcweir$(1)))))
235cdf0e10cSrcweirendef
236cdf0e10cSrcweir
237b63233d8Sdamjan# convert parametters filesystem root to native notation
238b63233d8Sdamjan# does some real work only on windows, make sure not to
239b63233d8Sdamjan# break the dummy implementations on unx*
240b63233d8Sdamjandefine gb_Helper_convert_native
241b63233d8Sdamjan$(patsubst -I$(OUTDIR)%,-I$(gb_Helper_OUTDIR_NATIVE)%, \
242b63233d8Sdamjan$(patsubst $(OUTDIR)%,$(gb_Helper_OUTDIR_NATIVE)%, \
243b63233d8Sdamjan$(patsubst $(WORKDIR)%,$(gb_Helper_WORKDIR_NATIVE)%, \
244b63233d8Sdamjan$(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \
245b63233d8Sdamjan$(1)))))
246b63233d8Sdamjanendef
247b63233d8Sdamjan
248cdf0e10cSrcweir
249cdf0e10cSrcweir# CObject class
250cdf0e10cSrcweir
251cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true))
252b63233d8Sdamjandefine gb_Object__command_deponcompile
253cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
254cdf0e10cSrcweir	$(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \
255cdf0e10cSrcweir		$(filter-out -DPRECOMPILED_HEADERS,$(4)) $(5) \
256cdf0e10cSrcweir		-I$(dir $(3)) \
257cdf0e10cSrcweir		$(filter-out -I$(COMPATH)% %/pch -I$(JAVA_HOME)%,$(6)) \
258cdf0e10cSrcweir		$(3) \
259cdf0e10cSrcweir		-f - \
260cdf0e10cSrcweir	| $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \
261cdf0e10cSrcweir		-v OBJECTFILE=$(1) \
262cdf0e10cSrcweir		-v OUTDIR=$(OUTDIR)/ \
263cdf0e10cSrcweir		-v WORKDIR=$(WORKDIR)/ \
264cdf0e10cSrcweir		-v SRCDIR=$(SRCDIR)/ \
265cdf0e10cSrcweir		-v REPODIR=$(REPODIR)/ \
266b63233d8Sdamjan	> $(2))
267cdf0e10cSrcweirendef
268cdf0e10cSrcweirelse
269b63233d8Sdamjangb_Object__command_deponcompile =
270cdf0e10cSrcweirendif
271cdf0e10cSrcweir
272cdf0e10cSrcweirdefine gb_CObject__command
273cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),C  ,3)
274cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
275b63233d8Sdamjan	mkdir -p $(dir $(1)) $(dir $(4)) && \
276cdf0e10cSrcweir	unset INCLUDE && \
277cdf0e10cSrcweir	$(gb_CC) \
278b63233d8Sdamjan		$(DEFS) \
279b63233d8Sdamjan		$(T_CFLAGS) \
280b63233d8Sdamjan		-Fd$(PDBFILE) \
281cdf0e10cSrcweir        $(PCHFLAGS) \
282cdf0e10cSrcweir		-I$(dir $(3)) \
283cdf0e10cSrcweir		$(INCLUDE) \
284cdf0e10cSrcweir		-c $(3) \
285cdf0e10cSrcweir		-Fo$(1))
286b63233d8Sdamjan$(call gb_Object__command_deponcompile,$(1),$(4),$(3),$(DEFS),$(T_CFLAGS),$(INCLUDE))
287cdf0e10cSrcweirendef
288cdf0e10cSrcweir
289cdf0e10cSrcweir
290cdf0e10cSrcweir# CxxObject class
291cdf0e10cSrcweir
292cdf0e10cSrcweirdefine gb_CxxObject__command
293cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),CXX,3)
294cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
295b63233d8Sdamjan	mkdir -p $(dir $(1)) $(dir $(4)) && \
296cdf0e10cSrcweir	unset INCLUDE && \
297cdf0e10cSrcweir	$(gb_CXX) \
298b63233d8Sdamjan		$(DEFS) \
299b63233d8Sdamjan		$(T_CXXFLAGS) \
300b63233d8Sdamjan		-Fd$(PDBFILE) \
301cdf0e10cSrcweir        $(PCHFLAGS) \
302cdf0e10cSrcweir		-I$(dir $(3)) \
303cdf0e10cSrcweir		$(INCLUDE_STL) $(INCLUDE) \
304cdf0e10cSrcweir		-c $(3) \
305cdf0e10cSrcweir		-Fo$(1))
306b63233d8Sdamjan$(call gb_Object__command_deponcompile,$(1),$(4),$(3),$(DEFS),$(T_CXXFLAGS),$(INCLUDE))
307cdf0e10cSrcweirendef
308cdf0e10cSrcweir
309cdf0e10cSrcweir
310cdf0e10cSrcweir# PrecompiledHeader class
311cdf0e10cSrcweir
312e6091915Struckmangb_PrecompiledHeader_get_enableflags = -DPRECOMPILED_HEADERS -Yu$(1).hxx \
313cdf0e10cSrcweir									   -Fp$(call gb_PrecompiledHeader_get_target,$(1))
314cdf0e10cSrcweir
315cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true))
316cdf0e10cSrcweirdefine gb_PrecompiledHeader__command_deponcompile
317cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
318cdf0e10cSrcweir	$(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \
319cdf0e10cSrcweir		$(4) $(5) \
320cdf0e10cSrcweir		-I$(dir $(3)) \
321cdf0e10cSrcweir		$(filter-out -I$(COMPATH)% -I$(JAVA_HOME)%,$(6)) \
322cdf0e10cSrcweir		$(3) \
323cdf0e10cSrcweir		-f - \
324cdf0e10cSrcweir	| $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \
325cdf0e10cSrcweir		-v OBJECTFILE=$(1) \
326cdf0e10cSrcweir		-v OUTDIR=$(OUTDIR)/ \
327cdf0e10cSrcweir		-v WORKDIR=$(WORKDIR)/ \
328cdf0e10cSrcweir		-v SRCDIR=$(SRCDIR)/ \
329cdf0e10cSrcweir		-v REPODIR=$(REPODIR)/ \
330cdf0e10cSrcweir	> $(call gb_PrecompiledHeader_get_dep_target,$(2)))
331cdf0e10cSrcweirendef
332cdf0e10cSrcweirelse
333cdf0e10cSrcweirgb_PrecompiledHeader__command_deponcompile =
334cdf0e10cSrcweirendif
335cdf0e10cSrcweir
336cdf0e10cSrcweir
337cdf0e10cSrcweirdefine gb_PrecompiledHeader__command
338cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),PCH,1)
339cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
340cdf0e10cSrcweir	mkdir -p $(dir $(1)) $(dir $(call gb_PrecompiledHeader_get_dep_target,$(2))) && \
341cdf0e10cSrcweir	unset INCLUDE && \
342cdf0e10cSrcweir	$(gb_CXX) \
343cdf0e10cSrcweir		$(4) $(5) -Fd$(PDBFILE) \
344cdf0e10cSrcweir		-I$(dir $(3)) \
345cdf0e10cSrcweir		$(6) \
346cdf0e10cSrcweir		-c $(3) \
347e6091915Struckman		-DPRECOMPILED_HEADERS \
348cdf0e10cSrcweir		-Yc$(notdir $(patsubst %.cxx,%.hxx,$(3))) -Fp$(1) -Fo$(1).obj)
349cdf0e10cSrcweir$(call gb_PrecompiledHeader__command_deponcompile,$(1),$(2),$(3),$(4),$(5),$(6))
350cdf0e10cSrcweirendef
351cdf0e10cSrcweir
352cdf0e10cSrcweir# NoexPrecompiledHeader class
353cdf0e10cSrcweir
354cdf0e10cSrcweirgb_NoexPrecompiledHeader_get_enableflags = -Yu$(1).hxx \
355cdf0e10cSrcweir										   -Fp$(call gb_NoexPrecompiledHeader_get_target,$(1))
356cdf0e10cSrcweir
357cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true))
358cdf0e10cSrcweirdefine gb_NoexPrecompiledHeader__command_deponcompile
359cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
360cdf0e10cSrcweir	$(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \
361cdf0e10cSrcweir		$(4) $(5) \
362cdf0e10cSrcweir		-I$(dir $(3)) \
363cdf0e10cSrcweir		$(filter-out -I$(COMPATH)% -I$(JAVA_HOME)%,$(6)) \
364cdf0e10cSrcweir		$(3) \
365cdf0e10cSrcweir		-f - \
366cdf0e10cSrcweir	| $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \
367cdf0e10cSrcweir		-v OBJECTFILE=$(1) \
368cdf0e10cSrcweir		-v OUTDIR=$(OUTDIR)/ \
369cdf0e10cSrcweir		-v WORKDIR=$(WORKDIR)/ \
370cdf0e10cSrcweir		-v SRCDIR=$(SRCDIR)/ \
371cdf0e10cSrcweir		-v REPODIR=$(REPODIR)/ \
372cdf0e10cSrcweir	> $(call gb_NoexPrecompiledHeader_get_dep_target,$(2)))
373cdf0e10cSrcweirendef
374cdf0e10cSrcweirelse
375cdf0e10cSrcweirgb_NoexPrecompiledHeader__command_deponcompile =
376cdf0e10cSrcweirendif
377cdf0e10cSrcweir
378cdf0e10cSrcweir
379cdf0e10cSrcweirdefine gb_NoexPrecompiledHeader__command
380cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),PCH,1)
381cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
382cdf0e10cSrcweir	mkdir -p $(dir $(1)) $(dir $(call gb_NoexPrecompiledHeader_get_dep_target,$(2))) && \
383cdf0e10cSrcweir	unset INCLUDE && \
384cdf0e10cSrcweir	$(gb_CXX) \
385cdf0e10cSrcweir		$(4) $(5) -Fd$(PDBFILE) \
386cdf0e10cSrcweir		-I$(dir $(3)) \
387cdf0e10cSrcweir		$(6) \
388cdf0e10cSrcweir		-c $(3) \
389e6091915Struckman		-DPRECOMPILED_HEADERS \
390cdf0e10cSrcweir		-Yc$(notdir $(patsubst %.cxx,%.hxx,$(3))) -Fp$(1) -Fo$(1).obj)
391cdf0e10cSrcweir$(call gb_NoexPrecompiledHeader__command_deponcompile,$(1),$(2),$(3),$(4),$(5),$(6))
392cdf0e10cSrcweirendef
393cdf0e10cSrcweir
394cdf0e10cSrcweir# LinkTarget class
395cdf0e10cSrcweir
396b63233d8Sdamjangb_LinkTarget_CFLAGS := $(gb_CFLAGS) $(gb_CFLAGS_WERROR)
397cdf0e10cSrcweirgb_LinkTarget_CXXFLAGS := $(gb_CXXFLAGS) $(gb_CXXFLAGS_WERROR)
398cdf0e10cSrcweir
399cdf0e10cSrcweirgb_LinkTarget_INCLUDE :=\
400cdf0e10cSrcweir	$(filter-out %/stl, $(subst -I. , ,$(SOLARINC))) \
401cdf0e10cSrcweir	$(foreach inc,$(subst ;, ,$(JDKINC)),-I$(inc)) \
402cdf0e10cSrcweir
403cdf0e10cSrcweirgb_LinkTarget_INCLUDE_STL := $(filter %/stl, $(subst -I. , ,$(SOLARINC)))
404cdf0e10cSrcweir
405cdf0e10cSrcweirgb_LinkTarget_get_pdbfile = $(call gb_LinkTarget_get_target,)pdb/$(1).pdb
406cdf0e10cSrcweir
407cdf0e10cSrcweirdefine gb_LinkTarget__command
408cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),LNK,4)
409cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
410cdf0e10cSrcweir	mkdir -p $(dir $(1)) && \
411cdf0e10cSrcweir	rm -f $(1) && \
412cdf0e10cSrcweir	RESPONSEFILE=$(call var2file,$(shell $(gb_MKTEMP)),100, \
413cdf0e10cSrcweir	    $(call gb_Helper_convert_native,$(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \
414cdf0e10cSrcweir		$(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \
415cdf0e10cSrcweir		$(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \
416cdf0e10cSrcweir		$(PCHOBJS) $(NATIVERES))) && \
417cdf0e10cSrcweir	$(gb_LINK) \
418dfce871fSDamjan Jovanovic		$(if $(filter Library,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \
419cdf0e10cSrcweir		$(if $(filter StaticLibrary,$(TARGETTYPE)),$(gb_StaticLibrary_TARGETTYPEFLAGS)) \
420e75d772dSDamjan Jovanovic		$(if $(filter GoogleTest Executable,$(TARGETTYPE)),$(gb_Executable_TARGETTYPEFLAGS)) \
421b63233d8Sdamjan		$(if $(filter YES,$(gb_Executable_TARGETGUI)), -SUBSYSTEM:WINDOWS, -SUBSYSTEM:CONSOLE) \
422b63233d8Sdamjan		$(T_LDFLAGS) \
423cdf0e10cSrcweir		@$${RESPONSEFILE} \
424cdf0e10cSrcweir		$(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib))) \
42544c25570SAndre Fischer		$(patsubst %,%.lib,$(EXTERNAL_LIBS)) \
426cdf0e10cSrcweir		$(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_filename,$(lib))) \
427b63233d8Sdamjan		$(LIBS) \
428cdf0e10cSrcweir		$(if $(DLLTARGET),-out:$(DLLTARGET) -implib:$(1),-out:$(1)); RC=$$?; rm $${RESPONSEFILE} \
429cdf0e10cSrcweir	$(if $(DLLTARGET),; if [ ! -f $(DLLTARGET) ]; then rm -f $(1) && false; fi) ; exit $$RC)
430cdf0e10cSrcweirendef
431cdf0e10cSrcweir
432cdf0e10cSrcweir
433cdf0e10cSrcweir# Library class
434cdf0e10cSrcweir
435b63233d8Sdamjangb_Library_DEFS := -D_DLL_
43664f1f997SHerbert Dürrgb_Library_TARGETTYPEFLAGS := -DLL -OPT:NOREF -SAFESEH -NXCOMPAT -DYNAMICBASE
437cdf0e10cSrcweirgb_Library_get_rpath :=
438cdf0e10cSrcweir
439cdf0e10cSrcweirgb_Library_SYSPRE := i
440cdf0e10cSrcweirgb_Library_PLAINEXT := .lib
441cdf0e10cSrcweir
442cdf0e10cSrcweirgb_Library_PLAINLIBS_NONE += \
443cdf0e10cSrcweir	advapi32 \
4446ecc4615Sdamjan	comdlg32 \
445b63233d8Sdamjan	d3d9 \
446b63233d8Sdamjan	d3dx \
447b63233d8Sdamjan	ddraw \
448cdf0e10cSrcweir	gdi32 \
449cdf0e10cSrcweir	gdiplus \
450df3f5cbcSdamjan	glu32 \
451cdf0e10cSrcweir	gnu_getopt \
452cdf0e10cSrcweir	imm32\
453cdf0e10cSrcweir	kernel32 \
454cdf0e10cSrcweir	msimg32 \
455cdf0e10cSrcweir	msvcrt \
456cdf0e10cSrcweir	mpr \
457cdf0e10cSrcweir	oldnames \
458cdf0e10cSrcweir	ole32 \
459cdf0e10cSrcweir	oleaut32 \
460df3f5cbcSdamjan	opengl32 \
461cdf0e10cSrcweir	shell32 \
4625a41b379Sdamjan	strmiids \
463cdf0e10cSrcweir	user32 \
464cdf0e10cSrcweir	uuid \
465cdf0e10cSrcweir	uwinapi \
466b63233d8Sdamjan	winmm \
467*42aba0ceSdamjan	winspool \
468*42aba0ceSdamjan	wsock32
469cdf0e10cSrcweir
470cdf0e10cSrcweirgb_Library_LAYER := \
471cdf0e10cSrcweir	$(foreach lib,$(gb_Library_OOOLIBS),$(lib):OOO) \
472cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_NONE),$(lib):OOO) \
473cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):OOO) \
474cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):OOO) \
475cdf0e10cSrcweir	$(foreach lib,$(gb_Library_RTLIBS),$(lib):OOO) \
476cdf0e10cSrcweir	$(foreach lib,$(gb_Library_RTVERLIBS),$(lib):OOO) \
477cdf0e10cSrcweir	$(foreach lib,$(gb_Library_STLLIBS),$(lib):OOO) \
478cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):OOO) \
479cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):OOO) \
480cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):OOO) \
481cdf0e10cSrcweir
482cdf0e10cSrcweirgb_Library_FILENAMES :=\
483cdf0e10cSrcweir	$(foreach lib,$(gb_Library_TARGETS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_PLAINEXT)) \
484cdf0e10cSrcweir
485cdf0e10cSrcweirgb_Library_DLLEXT := .dll
486cdf0e10cSrcweirgb_Library_MAJORVER := 3
487cdf0e10cSrcweirgb_Library_RTEXT := MSC$(gb_Library_DLLEXT)
4883d2a2350SHerbert Dürr
4893d2a2350SHerbert Dürrifeq ($(USE_SYSTEM_STL),YES)
4903d2a2350SHerbert Dürrifeq ($(gb_PRODUCT),$(true))
4913d2a2350SHerbert Dürrgb_Library_STLEXT := msvcprt.lib
4923d2a2350SHerbert Dürrelse
49323f1be86SHerbert Dürrgb_Library_STLEXT := msvcprt.lib
4943d2a2350SHerbert Dürrendif
4953d2a2350SHerbert Dürrelse
496cdf0e10cSrcweirifeq ($(gb_PRODUCT),$(true))
497cdf0e10cSrcweirgb_Library_STLEXT := port_vc7145$(gb_Library_DLLEXT)
498cdf0e10cSrcweirelse
499cdf0e10cSrcweirgb_Library_STLEXT := port_vc7145_stldebug$(gb_Library_DLLEXT)
500cdf0e10cSrcweirendif
5013d2a2350SHerbert Dürrendif
5023d2a2350SHerbert Dürr
5035f9a7a39SHerbert Dürrgb_Library_OOOEXT := $(gb_Library_DLLEXT)
504cdf0e10cSrcweirgb_Library_UNOEXT := .uno$(gb_Library_DLLEXT)
505cdf0e10cSrcweirgb_Library_UNOVEREXT := $(gb_Library_MAJORVER)$(gb_Library_DLLEXT)
506cdf0e10cSrcweirgb_Library_RTVEREXT := $(gb_Library_MAJORVER)$(gb_Library_RTEXT)
507cdf0e10cSrcweir
508cdf0e10cSrcweirgb_Library_DLLFILENAMES :=\
509cdf0e10cSrcweir	$(foreach lib,$(gb_Library_OOOLIBS),$(lib):$(lib)$(gb_Library_OOOEXT)) \
510cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_NONE),$(lib):$(lib)$(gb_Library_DLLEXT)) \
511cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):$(lib)$(gb_Library_DLLEXT)) \
512cdf0e10cSrcweir	$(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):$(lib)$(gb_Library_DLLEXT)) \
513cdf0e10cSrcweir	$(foreach lib,$(gb_Library_RTLIBS),$(lib):$(lib)$(gb_Library_RTEXT)) \
514cdf0e10cSrcweir	$(foreach lib,$(gb_Library_RTVERLIBS),$(lib):$(lib)$(gb_Library_RTVEREXT)) \
515cdf0e10cSrcweir	$(foreach lib,$(gb_Library_STLLIBS),$(lib):$(lib)$(gb_Library_STLEXT)) \
516cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):$(lib)$(gb_Library_UNOEXT)) \
517cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):$(lib)$(gb_Library_UNOEXT)) \
518cdf0e10cSrcweir	$(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):$(lib)$(gb_Library_UNOVEREXT)) \
519cdf0e10cSrcweir
520cdf0e10cSrcweirdefine gb_Library_Library_platform
521cdf0e10cSrcweir$(call gb_LinkTarget_set_dlltarget,$(2),$(3))
522cdf0e10cSrcweir
523cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\
524cdf0e10cSrcweir	$(patsubst %.lib,%.exp,$(call gb_LinkTarget_get_target,$(2))) \
525cdf0e10cSrcweir	$(3).manifest \
526cdf0e10cSrcweir	$(call gb_LinkTarget_get_pdbfile,$(2)) \
527cdf0e10cSrcweir	$(patsubst %.dll,%.pdb,$(3)) \
528cdf0e10cSrcweir	$(patsubst %.dll,%.ilk,$(3)) \
529cdf0e10cSrcweir)
530cdf0e10cSrcweir
531cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) \
532cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : AUXTARGETS := $(OUTDIR)/bin/$(notdir $(3))
533cdf0e10cSrcweir
534cdf0e10cSrcweirifneq ($(ENABLE_CRASHDUMP),)
535cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) \
536cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : AUXTARGETS +=  \
537cdf0e10cSrcweir		$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.pdb,$(3))) \
538cdf0e10cSrcweir		$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.ilk,$(3))) \
539cdf0e10cSrcweir
540b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.pdb,$(3))),$(patsubst %.dll,%.pdb,$(3)),$(1))
541b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.ilk,$(3))),$(patsubst %.dll,%.ilk,$(3)),$(1))
542cdf0e10cSrcweirendif
543cdf0e10cSrcweir
544b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(3)),$(3),$(1))
545cdf0e10cSrcweir
546cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \
547cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2))
548cdf0e10cSrcweir
549cdf0e10cSrcweirendef
550cdf0e10cSrcweir
551cdf0e10cSrcweirdefine gb_Library_add_default_nativeres
552cdf0e10cSrcweir$(call gb_WinResTarget_WinResTarget_init,$(1)/$(2))
553cdf0e10cSrcweir$(call gb_WinResTarget_add_file,$(1)/$(2),solenv/inc/shlinfo)
554cdf0e10cSrcweir$(call gb_WinResTarget_set_defs,$(1)/$(2),\
555cdf0e10cSrcweir        $$(DEFS) \
556cdf0e10cSrcweir		-DADDITIONAL_VERINFO1 \
557cdf0e10cSrcweir		-DADDITIONAL_VERINFO2 \
558cdf0e10cSrcweir		-DADDITIONAL_VERINFO3 \
559cdf0e10cSrcweir)
560cdf0e10cSrcweir$(call gb_Library_add_nativeres,$(1),$(2))
561cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_WinResTarget_get_clean_target,$(1)/$(2))
562cdf0e10cSrcweir
563cdf0e10cSrcweirendef
564cdf0e10cSrcweir
565cdf0e10cSrcweirdefine gb_Library_add_nativeres
566cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(call gb_Library__get_linktargetname,$(1))) : $(call gb_WinResTarget_get_target,$(1)/$(2))
567cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(call gb_Library__get_linktargetname,$(1))) : NATIVERES += $(call gb_WinResTarget_get_target,$(1)/$(2))
568cdf0e10cSrcweir
569cdf0e10cSrcweirendef
570cdf0e10cSrcweir
571cdf0e10cSrcweirdefine gb_Library_get_dllname
572cdf0e10cSrcweir$(patsubst $(1):%,%,$(filter $(1):%,$(gb_Library_DLLFILENAMES)))
573cdf0e10cSrcweirendef
574cdf0e10cSrcweir
575cdf0e10cSrcweir
576cdf0e10cSrcweir# StaticLibrary class
577cdf0e10cSrcweir
578cdf0e10cSrcweirgb_StaticLibrary_DEFS :=
579cdf0e10cSrcweirgb_StaticLibrary_TARGETTYPEFLAGS := -LIB
580cdf0e10cSrcweirgb_StaticLibrary_SYSPRE :=
581cdf0e10cSrcweirgb_StaticLibrary_PLAINEXT := .lib
582cdf0e10cSrcweirgb_StaticLibrary_JPEGEXT := lib$(gb_StaticLibrary_PLAINEXT)
583cdf0e10cSrcweir
584cdf0e10cSrcweirgb_StaticLibrary_FILENAMES := \
585cdf0e10cSrcweir	$(foreach lib,$(gb_StaticLibrary_JPEGLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_JPEGEXT)) \
586cdf0e10cSrcweir	$(foreach lib,$(gb_StaticLibrary_PLAINLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_PLAINEXT)) \
587cdf0e10cSrcweir
588cdf0e10cSrcweirgb_StaticLibrary_FILENAMES := $(patsubst salcpprt:salcpprt%,salcpprt:cpprtl%,$(gb_StaticLibrary_FILENAMES))
589cdf0e10cSrcweir
590cdf0e10cSrcweirdefine gb_StaticLibrary_StaticLibrary_platform
591cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \
592cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2))
593cdf0e10cSrcweir
594cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\
595cdf0e10cSrcweir	$(call gb_LinkTarget_get_pdbfile,$(2)) \
596cdf0e10cSrcweir)
597cdf0e10cSrcweir
598cdf0e10cSrcweirendef
599cdf0e10cSrcweir
600cdf0e10cSrcweir# Executable class
601cdf0e10cSrcweir
602cdf0e10cSrcweirgb_Executable_EXT := .exe
60364f1f997SHerbert Dürrgb_Executable_TARGETTYPEFLAGS := -RELEASE -BASE:0x1b000000 -OPT:NOREF -INCREMENTAL:NO -DEBUG -SAFESEH -NXCOMPAT -DYNAMICBASE
604cdf0e10cSrcweirgb_Executable_get_rpath :=
605b63233d8Sdamjangb_Executable_TARGETGUI :=
606cdf0e10cSrcweir
607cdf0e10cSrcweirdefine gb_Executable_Executable_platform
608cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\
609cdf0e10cSrcweir	$(patsubst %.exe,%.pdb,$(call gb_LinkTarget_get_target,$(2))) \
610cdf0e10cSrcweir	$(call gb_LinkTarget_get_pdbfile,$(2)) \
611cdf0e10cSrcweir	$(call gb_LinkTarget_get_target,$(2)).manifest \
612cdf0e10cSrcweir)
613cdf0e10cSrcweir
614cdf0e10cSrcweir$(call gb_Executable_get_target,$(1)) \
615cdf0e10cSrcweir$(call gb_Executable_get_clean_target,$(1)) : AUXTARGETS := $(call gb_Executable_get_target,$(1)).manifest
616b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(call gb_Executable_get_target,$(1)).manifest,$(call gb_LinkTarget_get_target,$(2)).manifest,$(1))
617cdf0e10cSrcweir
618cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \
619cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2))
620cdf0e10cSrcweir
621cdf0e10cSrcweirendef
622cdf0e10cSrcweir
623e75d772dSDamjan Jovanovic# GoogleTest class
624e75d772dSDamjan Jovanovic
625e75d772dSDamjan Jovanovicgb_GoogleTest_GTESTPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin"
626e75d772dSDamjan Jovanovicgb_GoogleTest_get_filename = $(1)$(gb_Executable_EXT)
627e75d772dSDamjan Jovanovic
628e75d772dSDamjan Jovanovicdefine gb_GoogleTest_GoogleTest_platform
629e75d772dSDamjan Jovanovicendef
630e75d772dSDamjan Jovanovic
631cdf0e10cSrcweir# JunitTest class
632cdf0e10cSrcweir
633cdf0e10cSrcweirgb_defaultlangiso := en-US
634cdf0e10cSrcweirgb_smoketest_instset := $(SRCDIR)/instsetoo_native/$(INPATH)/OpenOffice/archive/install/$(gb_defaultlangiso)/OOo_*_install-arc_$(gb_defaultlangiso).zip
635cdf0e10cSrcweir
636cdf0e10cSrcweirifeq ($(OOO_TEST_SOFFICE),)
637cdf0e10cSrcweir
638cdf0e10cSrcweir
639cdf0e10cSrcweir# Work around Windows problems with long pathnames (see issue 50885) by
640cdf0e10cSrcweir# installing into the temp directory instead of the module output tree (in which
641cdf0e10cSrcweir# case $(target).instpath contains the path to the temp installation,
642cdf0e10cSrcweir# which is removed after smoketest); can be removed once issue 50885 is fixed;
643cdf0e10cSrcweir# on other platforms, a single installation to solver is created in
644cdf0e10cSrcweir# smoketestoo_native.
645cdf0e10cSrcweir
646cdf0e10cSrcweir# for now, no dependency on $(shell ls $(gb_smoketest_instset))
647cdf0e10cSrcweir# because that doesn't work before the instset is built
648cdf0e10cSrcweir# and there is not much of a benefit anyway (gbuild not knowing about smoketest)
649cdf0e10cSrcweirdefine gb_JunitTest_JunitTest_platform_longpathname_hack
650cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)) : $(call gb_JunitTest_get_target,$(1)).instpath
651cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)) : CLEAN_CMD = $(call gb_Helper_abbreviate_dirs,rm -rf `cat $$@.instpath` $$@.instpath)
652cdf0e10cSrcweir
653cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)).instpath :
654cdf0e10cSrcweir	INST_DIR=$$$$(cygpath -m `mktemp -d -t testinst.XXXXXX`) \
655cdf0e10cSrcweir	&& unzip -d "$$$${INST_DIR}"  $$(gb_smoketest_instset) \
656cdf0e10cSrcweir	&& mv "$$$${INST_DIR}"/OOo_*_install-arc_$$(gb_defaultlangiso) "$$$${INST_DIR}"/opt\
657cdf0e10cSrcweir	&& mkdir -p $$(dir $$@) \
658cdf0e10cSrcweir	&& echo "$$$${INST_DIR}" > $$@
659cdf0e10cSrcweir
660cdf0e10cSrcweirendef
661cdf0e10cSrcweirelse # OOO_TEST_SOFFICE
662cdf0e10cSrcweirgb_JunitTest_JunitTest_platform_longpathname_hack =
663cdf0e10cSrcweirendif # OOO_TEST_SOFFICE
664cdf0e10cSrcweir
665cdf0e10cSrcweirdefine gb_JunitTest_JunitTest_platform
666cdf0e10cSrcweir$(call gb_JunitTest_JunitTest_platform_longpathname_hack,$(1))
667cdf0e10cSrcweir
668cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)) : DEFS := \
669cdf0e10cSrcweir	-Dorg.openoffice.test.arg.soffice="$$$${OOO_TEST_SOFFICE:-path:`cat $(call gb_JunitTest_get_target,$(1)).instpath`/opt/OpenOffice.org 3/program/soffice.exe}" \
670cdf0e10cSrcweir    -Dorg.openoffice.test.arg.env=PATH \
671cdf0e10cSrcweir    -Dorg.openoffice.test.arg.user=file:///$(call gb_JunitTest_get_userdir,$(1)) \
672cdf0e10cSrcweir
673cdf0e10cSrcweirendef
674cdf0e10cSrcweir
675cdf0e10cSrcweir
676cdf0e10cSrcweir# SdiTarget class
677cdf0e10cSrcweir
678cdf0e10cSrcweirgb_SdiTarget_SVIDLPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin"
679cdf0e10cSrcweir
680cdf0e10cSrcweir# SrsPartMergeTarget
681cdf0e10cSrcweir
682cdf0e10cSrcweirgb_SrsPartMergeTarget_TRANSEXPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin"
683cdf0e10cSrcweir
684cdf0e10cSrcweir# SrsPartTarget class
685cdf0e10cSrcweir
686cdf0e10cSrcweirgb_SrsPartTarget_RSCTARGET := $(OUTDIR)/bin/rsc.exe
687cdf0e10cSrcweirgb_SrsPartTarget_RSCCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_SrsPartTarget_RSCTARGET)
688cdf0e10cSrcweir
689cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true))
690cdf0e10cSrcweirdefine gb_SrsPartTarget__command_dep
691cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
692cdf0e10cSrcweir	$(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \
693cdf0e10cSrcweir		$(INCLUDE) \
694cdf0e10cSrcweir		$(DEFS) \
695cdf0e10cSrcweir		$(2) \
696cdf0e10cSrcweir		-f - \
697cdf0e10cSrcweir	| $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \
698cdf0e10cSrcweir		-v OBJECTFILE=$(call gb_SrsPartTarget_get_target,$(1)) \
699cdf0e10cSrcweir		-v OUTDIR=$(OUTDIR)/ \
700cdf0e10cSrcweir		-v WORKDIR=$(WORKDIR)/ \
701cdf0e10cSrcweir		-v SRCDIR=$(SRCDIR)/ \
702cdf0e10cSrcweir		-v REPODIR=$(REPODIR)/ \
703cdf0e10cSrcweir	> $(call gb_SrsPartTarget_get_dep_target,$(1)))
704cdf0e10cSrcweirendef
705cdf0e10cSrcweirelse
706cdf0e10cSrcweirgb_SrsPartTarget__command_dep =
707cdf0e10cSrcweirendif
708cdf0e10cSrcweir
709cdf0e10cSrcweir# WinResTarget class
710cdf0e10cSrcweir
711cdf0e10cSrcweirgb_WinResTarget_POSTFIX :=.res
712cdf0e10cSrcweir
713cdf0e10cSrcweirdefine gb_WinResTarget__command
714cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),RES,3)
715cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
716cdf0e10cSrcweir	mkdir -p $(dir $(1)) && \
717cdf0e10cSrcweir	$(gb_RC) \
718cdf0e10cSrcweir		$(DEFS) $(FLAGS) \
719cdf0e10cSrcweir		-I$(dir $(3)) \
720cdf0e10cSrcweir		$(INCLUDE) \
721cdf0e10cSrcweir		-Fo$(1) \
722cdf0e10cSrcweir        $(RCFILE) )
723cdf0e10cSrcweirendef
724cdf0e10cSrcweir
725cdf0e10cSrcweir$(eval $(call gb_Helper_make_dep_targets,\
726cdf0e10cSrcweir	WinResTarget \
727cdf0e10cSrcweir))
728cdf0e10cSrcweir
729cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true))
730cdf0e10cSrcweirdefine gb_WinResTarget__command_dep
731cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\
732cdf0e10cSrcweir	$(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \
733cdf0e10cSrcweir		$(INCLUDE) \
734cdf0e10cSrcweir		$(DEFS) \
735cdf0e10cSrcweir		$(2) \
736cdf0e10cSrcweir		-f - \
737cdf0e10cSrcweir	| $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \
738cdf0e10cSrcweir		-v OBJECTFILE=$(call gb_WinResTarget_get_target,$(1)) \
739cdf0e10cSrcweir		-v OUTDIR=$(OUTDIR)/ \
740cdf0e10cSrcweir		-v WORKDIR=$(WORKDIR)/ \
741cdf0e10cSrcweir		-v SRCDIR=$(SRCDIR)/ \
742cdf0e10cSrcweir		-v REPODIR=$(REPODIR)/ \
743cdf0e10cSrcweir	> $(call gb_WinResTarget_get_dep_target,$(1)))
744cdf0e10cSrcweirendef
745cdf0e10cSrcweirelse
746cdf0e10cSrcweirgb_WinResTarget__command_dep =
747cdf0e10cSrcweirendif
748cdf0e10cSrcweir
749cdf0e10cSrcweir# ComponentTarget
750cdf0e10cSrcweir
751cdf0e10cSrcweirgb_XSLTPROCPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin"
752cdf0e10cSrcweirgb_Library_COMPONENTPREFIXES := \
753910823aeSJürgen Schmidt    OOO:vnd.sun.star.expand:\dOOO_BASE_DIR/program/ \
754cdf0e10cSrcweir    URELIB:vnd.sun.star.expand:\dURE_INTERNAL_LIB_DIR/ \
755b63233d8Sdamjan    NONE:vnd.sun.star.expand:\dOOO_INBUILD_SHAREDLIB_DIR/ \
756b63233d8Sdamjan
757b63233d8Sdamjan# UnoApiTarget
758b63233d8Sdamjan
759b63233d8Sdamjangb_UnoApiTarget_IDLCTARGET := $(OUTDIR)/bin/idlc.exe
760b63233d8Sdamjangb_UnoApiTarget_IDLCCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_IDLCTARGET)
761b63233d8Sdamjangb_UnoApiTarget_REGMERGETARGET := $(OUTDIR)/bin/regmerge.exe
762b63233d8Sdamjangb_UnoApiTarget_REGMERGECOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGMERGETARGET)
763b63233d8Sdamjangb_UnoApiTarget_REGCOMPARETARGET := $(OUTDIR)/bin/regcompare.exe
764b63233d8Sdamjangb_UnoApiTarget_REGCOMPARECOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGCOMPARETARGET)
765b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERTARGET := $(OUTDIR)/bin/cppumaker.exe
766b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_CPPUMAKERTARGET)
767b63233d8Sdamjangb_UnoApiTarget_REGVIEWTARGET := $(OUTDIR)/bin/regview.exe
768b63233d8Sdamjangb_UnoApiTarget_REGVIEWCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGVIEWTARGET)
769cdf0e10cSrcweir
770cdf0e10cSrcweir# vim: set noet sw=4 ts=4:
771