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 198cf91f1aeSDamjan Jovanovicifeq ($(gb_DEBUGGING),TRUE) 199cf91f1aeSDamjan Jovanovicgb_LinkTarget_LDFLAGS += -DEBUG 200cf91f1aeSDamjan Jovanovicendif 201cf91f1aeSDamjan Jovanovic 202b63233d8Sdamjan# this does not use CFLAGS so it is not overridable 203cdf0e10cSrcweirifneq ($(ENABLE_CRASHDUMP),) 204cdf0e10cSrcweirgb_CFLAGS+=-Zi 205cdf0e10cSrcweirgb_CXXFLAGS+=-Zi 206cdf0e10cSrcweirendif 207cdf0e10cSrcweir 208cdf0e10cSrcweirifeq ($(gb_DEBUGLEVEL),2) 209b63233d8Sdamjangb_COMPILEROPTFLAGS := 210cdf0e10cSrcweirelse 211cdf0e10cSrcweirgb_COMPILEROPTFLAGS := -Ob1 -Oxs -Oy- 212cdf0e10cSrcweirendif 213cdf0e10cSrcweir 214cdf0e10cSrcweirgb_COMPILERNOOPTFLAGS := -Od 215cdf0e10cSrcweir 216cdf0e10cSrcweir 217cdf0e10cSrcweir# Helper class 218cdf0e10cSrcweirgb_Helper_SRCDIR_NATIVE := $(shell cygpath -m $(SRCDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }') 219cdf0e10cSrcweirgb_Helper_WORKDIR_NATIVE := $(shell cygpath -m $(WORKDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }') 220cdf0e10cSrcweirgb_Helper_OUTDIR_NATIVE := $(shell cygpath -m $(OUTDIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }') 221cdf0e10cSrcweirgb_Helper_REPODIR_NATIVE := $(shell cygpath -m $(REPODIR) | $(gb_AWK) -- '{ print tolower(substr($$0,1,1)) substr($$0,2) }') 222cdf0e10cSrcweir 223cdf0e10cSrcweirdefine gb_Helper_abbreviate_dirs_native 224cdf0e10cSrcweirR=$(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))) && \ 225cdf0e10cSrcweir$(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))))))))) 226cdf0e10cSrcweirendef 227cdf0e10cSrcweir 228cdf0e10cSrcweir# convert parametters filesystem root to native notation 229cdf0e10cSrcweir# does some real work only on windows, make sure not to 230cdf0e10cSrcweir# break the dummy implementations on unx* 231cdf0e10cSrcweirdefine gb_Helper_convert_native 232cdf0e10cSrcweir$(patsubst -I$(OUTDIR)%,-I$(gb_Helper_OUTDIR_NATIVE)%, \ 233cdf0e10cSrcweir$(patsubst $(OUTDIR)%,$(gb_Helper_OUTDIR_NATIVE)%, \ 234cdf0e10cSrcweir$(patsubst $(WORKDIR)%,$(gb_Helper_WORKDIR_NATIVE)%, \ 235cdf0e10cSrcweir$(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \ 236cdf0e10cSrcweir$(1))))) 237cdf0e10cSrcweirendef 238cdf0e10cSrcweir 239b63233d8Sdamjan# convert parametters filesystem root to native notation 240b63233d8Sdamjan# does some real work only on windows, make sure not to 241b63233d8Sdamjan# break the dummy implementations on unx* 242b63233d8Sdamjandefine gb_Helper_convert_native 243b63233d8Sdamjan$(patsubst -I$(OUTDIR)%,-I$(gb_Helper_OUTDIR_NATIVE)%, \ 244b63233d8Sdamjan$(patsubst $(OUTDIR)%,$(gb_Helper_OUTDIR_NATIVE)%, \ 245b63233d8Sdamjan$(patsubst $(WORKDIR)%,$(gb_Helper_WORKDIR_NATIVE)%, \ 246b63233d8Sdamjan$(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \ 247b63233d8Sdamjan$(1))))) 248b63233d8Sdamjanendef 249b63233d8Sdamjan 250cdf0e10cSrcweir 251cdf0e10cSrcweir# CObject class 252cdf0e10cSrcweir 253cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true)) 254b63233d8Sdamjandefine gb_Object__command_deponcompile 255cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 256cdf0e10cSrcweir $(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \ 257cdf0e10cSrcweir $(filter-out -DPRECOMPILED_HEADERS,$(4)) $(5) \ 258cdf0e10cSrcweir -I$(dir $(3)) \ 259cdf0e10cSrcweir $(filter-out -I$(COMPATH)% %/pch -I$(JAVA_HOME)%,$(6)) \ 260cdf0e10cSrcweir $(3) \ 261cdf0e10cSrcweir -f - \ 262cdf0e10cSrcweir | $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \ 263cdf0e10cSrcweir -v OBJECTFILE=$(1) \ 264cdf0e10cSrcweir -v OUTDIR=$(OUTDIR)/ \ 265cdf0e10cSrcweir -v WORKDIR=$(WORKDIR)/ \ 266cdf0e10cSrcweir -v SRCDIR=$(SRCDIR)/ \ 267cdf0e10cSrcweir -v REPODIR=$(REPODIR)/ \ 268b63233d8Sdamjan > $(2)) 269cdf0e10cSrcweirendef 270cdf0e10cSrcweirelse 271b63233d8Sdamjangb_Object__command_deponcompile = 272cdf0e10cSrcweirendif 273cdf0e10cSrcweir 274cdf0e10cSrcweirdefine gb_CObject__command 275cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),C ,3) 276cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 277b63233d8Sdamjan mkdir -p $(dir $(1)) $(dir $(4)) && \ 278cdf0e10cSrcweir unset INCLUDE && \ 279cdf0e10cSrcweir $(gb_CC) \ 280b63233d8Sdamjan $(DEFS) \ 281b63233d8Sdamjan $(T_CFLAGS) \ 282b63233d8Sdamjan -Fd$(PDBFILE) \ 283*8e6bd3e9SDon Lewis $(CFLAGS) \ 284cdf0e10cSrcweir $(PCHFLAGS) \ 285cdf0e10cSrcweir -I$(dir $(3)) \ 286cdf0e10cSrcweir $(INCLUDE) \ 287cdf0e10cSrcweir -c $(3) \ 288cdf0e10cSrcweir -Fo$(1)) 289b63233d8Sdamjan$(call gb_Object__command_deponcompile,$(1),$(4),$(3),$(DEFS),$(T_CFLAGS),$(INCLUDE)) 290cdf0e10cSrcweirendef 291cdf0e10cSrcweir 292cdf0e10cSrcweir 293cdf0e10cSrcweir# CxxObject class 294cdf0e10cSrcweir 295cdf0e10cSrcweirdefine gb_CxxObject__command 296cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),CXX,3) 297cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 298b63233d8Sdamjan mkdir -p $(dir $(1)) $(dir $(4)) && \ 299cdf0e10cSrcweir unset INCLUDE && \ 300cdf0e10cSrcweir $(gb_CXX) \ 301b63233d8Sdamjan $(DEFS) \ 302b63233d8Sdamjan $(T_CXXFLAGS) \ 303b63233d8Sdamjan -Fd$(PDBFILE) \ 304*8e6bd3e9SDon Lewis $(CXXFLAGS) \ 305cdf0e10cSrcweir $(PCHFLAGS) \ 306cdf0e10cSrcweir -I$(dir $(3)) \ 307cdf0e10cSrcweir $(INCLUDE_STL) $(INCLUDE) \ 308cdf0e10cSrcweir -c $(3) \ 309cdf0e10cSrcweir -Fo$(1)) 310b63233d8Sdamjan$(call gb_Object__command_deponcompile,$(1),$(4),$(3),$(DEFS),$(T_CXXFLAGS),$(INCLUDE)) 311cdf0e10cSrcweirendef 312cdf0e10cSrcweir 313cdf0e10cSrcweir 314cdf0e10cSrcweir# PrecompiledHeader class 315cdf0e10cSrcweir 316e6091915Struckmangb_PrecompiledHeader_get_enableflags = -DPRECOMPILED_HEADERS -Yu$(1).hxx \ 317cdf0e10cSrcweir -Fp$(call gb_PrecompiledHeader_get_target,$(1)) 318cdf0e10cSrcweir 319cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true)) 320cdf0e10cSrcweirdefine gb_PrecompiledHeader__command_deponcompile 321cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 322cdf0e10cSrcweir $(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \ 323cdf0e10cSrcweir $(4) $(5) \ 324cdf0e10cSrcweir -I$(dir $(3)) \ 325cdf0e10cSrcweir $(filter-out -I$(COMPATH)% -I$(JAVA_HOME)%,$(6)) \ 326cdf0e10cSrcweir $(3) \ 327cdf0e10cSrcweir -f - \ 328cdf0e10cSrcweir | $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \ 329cdf0e10cSrcweir -v OBJECTFILE=$(1) \ 330cdf0e10cSrcweir -v OUTDIR=$(OUTDIR)/ \ 331cdf0e10cSrcweir -v WORKDIR=$(WORKDIR)/ \ 332cdf0e10cSrcweir -v SRCDIR=$(SRCDIR)/ \ 333cdf0e10cSrcweir -v REPODIR=$(REPODIR)/ \ 334cdf0e10cSrcweir > $(call gb_PrecompiledHeader_get_dep_target,$(2))) 335cdf0e10cSrcweirendef 336cdf0e10cSrcweirelse 337cdf0e10cSrcweirgb_PrecompiledHeader__command_deponcompile = 338cdf0e10cSrcweirendif 339cdf0e10cSrcweir 340cdf0e10cSrcweir 341cdf0e10cSrcweirdefine gb_PrecompiledHeader__command 342cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),PCH,1) 343cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 344cdf0e10cSrcweir mkdir -p $(dir $(1)) $(dir $(call gb_PrecompiledHeader_get_dep_target,$(2))) && \ 345cdf0e10cSrcweir unset INCLUDE && \ 346cdf0e10cSrcweir $(gb_CXX) \ 347cdf0e10cSrcweir $(4) $(5) -Fd$(PDBFILE) \ 348cdf0e10cSrcweir -I$(dir $(3)) \ 349cdf0e10cSrcweir $(6) \ 350cdf0e10cSrcweir -c $(3) \ 351e6091915Struckman -DPRECOMPILED_HEADERS \ 352cdf0e10cSrcweir -Yc$(notdir $(patsubst %.cxx,%.hxx,$(3))) -Fp$(1) -Fo$(1).obj) 353cdf0e10cSrcweir$(call gb_PrecompiledHeader__command_deponcompile,$(1),$(2),$(3),$(4),$(5),$(6)) 354cdf0e10cSrcweirendef 355cdf0e10cSrcweir 356cdf0e10cSrcweir# NoexPrecompiledHeader class 357cdf0e10cSrcweir 358cdf0e10cSrcweirgb_NoexPrecompiledHeader_get_enableflags = -Yu$(1).hxx \ 359cdf0e10cSrcweir -Fp$(call gb_NoexPrecompiledHeader_get_target,$(1)) 360cdf0e10cSrcweir 361cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true)) 362cdf0e10cSrcweirdefine gb_NoexPrecompiledHeader__command_deponcompile 363cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 364cdf0e10cSrcweir $(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \ 365cdf0e10cSrcweir $(4) $(5) \ 366cdf0e10cSrcweir -I$(dir $(3)) \ 367cdf0e10cSrcweir $(filter-out -I$(COMPATH)% -I$(JAVA_HOME)%,$(6)) \ 368cdf0e10cSrcweir $(3) \ 369cdf0e10cSrcweir -f - \ 370cdf0e10cSrcweir | $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \ 371cdf0e10cSrcweir -v OBJECTFILE=$(1) \ 372cdf0e10cSrcweir -v OUTDIR=$(OUTDIR)/ \ 373cdf0e10cSrcweir -v WORKDIR=$(WORKDIR)/ \ 374cdf0e10cSrcweir -v SRCDIR=$(SRCDIR)/ \ 375cdf0e10cSrcweir -v REPODIR=$(REPODIR)/ \ 376cdf0e10cSrcweir > $(call gb_NoexPrecompiledHeader_get_dep_target,$(2))) 377cdf0e10cSrcweirendef 378cdf0e10cSrcweirelse 379cdf0e10cSrcweirgb_NoexPrecompiledHeader__command_deponcompile = 380cdf0e10cSrcweirendif 381cdf0e10cSrcweir 382cdf0e10cSrcweir 383cdf0e10cSrcweirdefine gb_NoexPrecompiledHeader__command 384cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),PCH,1) 385cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 386cdf0e10cSrcweir mkdir -p $(dir $(1)) $(dir $(call gb_NoexPrecompiledHeader_get_dep_target,$(2))) && \ 387cdf0e10cSrcweir unset INCLUDE && \ 388cdf0e10cSrcweir $(gb_CXX) \ 389cdf0e10cSrcweir $(4) $(5) -Fd$(PDBFILE) \ 390cdf0e10cSrcweir -I$(dir $(3)) \ 391cdf0e10cSrcweir $(6) \ 392cdf0e10cSrcweir -c $(3) \ 393e6091915Struckman -DPRECOMPILED_HEADERS \ 394cdf0e10cSrcweir -Yc$(notdir $(patsubst %.cxx,%.hxx,$(3))) -Fp$(1) -Fo$(1).obj) 395cdf0e10cSrcweir$(call gb_NoexPrecompiledHeader__command_deponcompile,$(1),$(2),$(3),$(4),$(5),$(6)) 396cdf0e10cSrcweirendef 397cdf0e10cSrcweir 398cdf0e10cSrcweir# LinkTarget class 399cdf0e10cSrcweir 400b63233d8Sdamjangb_LinkTarget_CFLAGS := $(gb_CFLAGS) $(gb_CFLAGS_WERROR) 401cdf0e10cSrcweirgb_LinkTarget_CXXFLAGS := $(gb_CXXFLAGS) $(gb_CXXFLAGS_WERROR) 402cdf0e10cSrcweir 403cdf0e10cSrcweirgb_LinkTarget_INCLUDE :=\ 404cdf0e10cSrcweir $(filter-out %/stl, $(subst -I. , ,$(SOLARINC))) \ 405cdf0e10cSrcweir $(foreach inc,$(subst ;, ,$(JDKINC)),-I$(inc)) \ 406cdf0e10cSrcweir 407cdf0e10cSrcweirgb_LinkTarget_INCLUDE_STL := $(filter %/stl, $(subst -I. , ,$(SOLARINC))) 408cdf0e10cSrcweir 409cdf0e10cSrcweirgb_LinkTarget_get_pdbfile = $(call gb_LinkTarget_get_target,)pdb/$(1).pdb 410cdf0e10cSrcweir 411cdf0e10cSrcweirdefine gb_LinkTarget__command 412cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),LNK,4) 413cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 414cdf0e10cSrcweir mkdir -p $(dir $(1)) && \ 415cdf0e10cSrcweir rm -f $(1) && \ 416cdf0e10cSrcweir RESPONSEFILE=$(call var2file,$(shell $(gb_MKTEMP)),100, \ 417cdf0e10cSrcweir $(call gb_Helper_convert_native,$(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \ 418cdf0e10cSrcweir $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \ 419cdf0e10cSrcweir $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \ 420cdf0e10cSrcweir $(PCHOBJS) $(NATIVERES))) && \ 421cdf0e10cSrcweir $(gb_LINK) \ 422dfce871fSDamjan Jovanovic $(if $(filter Library,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \ 423cdf0e10cSrcweir $(if $(filter StaticLibrary,$(TARGETTYPE)),$(gb_StaticLibrary_TARGETTYPEFLAGS)) \ 424e75d772dSDamjan Jovanovic $(if $(filter GoogleTest Executable,$(TARGETTYPE)),$(gb_Executable_TARGETTYPEFLAGS)) \ 425b63233d8Sdamjan $(if $(filter YES,$(gb_Executable_TARGETGUI)), -SUBSYSTEM:WINDOWS, -SUBSYSTEM:CONSOLE) \ 426b63233d8Sdamjan $(T_LDFLAGS) \ 427cdf0e10cSrcweir @$${RESPONSEFILE} \ 428cdf0e10cSrcweir $(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib))) \ 42944c25570SAndre Fischer $(patsubst %,%.lib,$(EXTERNAL_LIBS)) \ 430cdf0e10cSrcweir $(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_filename,$(lib))) \ 431b63233d8Sdamjan $(LIBS) \ 432cdf0e10cSrcweir $(if $(DLLTARGET),-out:$(DLLTARGET) -implib:$(1),-out:$(1)); RC=$$?; rm $${RESPONSEFILE} \ 433cdf0e10cSrcweir $(if $(DLLTARGET),; if [ ! -f $(DLLTARGET) ]; then rm -f $(1) && false; fi) ; exit $$RC) 434cdf0e10cSrcweirendef 435cdf0e10cSrcweir 436cdf0e10cSrcweir 437cdf0e10cSrcweir# Library class 438cdf0e10cSrcweir 439b63233d8Sdamjangb_Library_DEFS := -D_DLL_ 44064f1f997SHerbert Dürrgb_Library_TARGETTYPEFLAGS := -DLL -OPT:NOREF -SAFESEH -NXCOMPAT -DYNAMICBASE 441cdf0e10cSrcweirgb_Library_get_rpath := 442cdf0e10cSrcweir 443cdf0e10cSrcweirgb_Library_SYSPRE := i 444cdf0e10cSrcweirgb_Library_PLAINEXT := .lib 445cdf0e10cSrcweir 446cdf0e10cSrcweirgb_Library_PLAINLIBS_NONE += \ 447cdf0e10cSrcweir advapi32 \ 4486ecc4615Sdamjan comdlg32 \ 449b63233d8Sdamjan d3d9 \ 450b63233d8Sdamjan d3dx \ 451b63233d8Sdamjan ddraw \ 452cdf0e10cSrcweir gdi32 \ 453cdf0e10cSrcweir gdiplus \ 454df3f5cbcSdamjan glu32 \ 455cdf0e10cSrcweir gnu_getopt \ 456cdf0e10cSrcweir imm32\ 457cdf0e10cSrcweir kernel32 \ 458cdf0e10cSrcweir msimg32 \ 459cdf0e10cSrcweir msvcrt \ 460cdf0e10cSrcweir mpr \ 461cdf0e10cSrcweir oldnames \ 462cdf0e10cSrcweir ole32 \ 463cdf0e10cSrcweir oleaut32 \ 464df3f5cbcSdamjan opengl32 \ 465cdf0e10cSrcweir shell32 \ 466b1d3b18cSdamjan shlwapi \ 4675a41b379Sdamjan strmiids \ 468cdf0e10cSrcweir user32 \ 469cdf0e10cSrcweir uuid \ 470cdf0e10cSrcweir uwinapi \ 471b63233d8Sdamjan winmm \ 47242aba0ceSdamjan winspool \ 473ad2376c3Sdamjan ws2_32 \ 47442aba0ceSdamjan wsock32 475cdf0e10cSrcweir 476cdf0e10cSrcweirgb_Library_LAYER := \ 477cdf0e10cSrcweir $(foreach lib,$(gb_Library_OOOLIBS),$(lib):OOO) \ 478cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_NONE),$(lib):OOO) \ 479cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):OOO) \ 480cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):OOO) \ 481cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTLIBS),$(lib):OOO) \ 482cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTVERLIBS),$(lib):OOO) \ 483cdf0e10cSrcweir $(foreach lib,$(gb_Library_STLLIBS),$(lib):OOO) \ 484cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):OOO) \ 485cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):OOO) \ 486cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):OOO) \ 487cdf0e10cSrcweir 488cdf0e10cSrcweirgb_Library_FILENAMES :=\ 489cdf0e10cSrcweir $(foreach lib,$(gb_Library_TARGETS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_PLAINEXT)) \ 490cdf0e10cSrcweir 491cdf0e10cSrcweirgb_Library_DLLEXT := .dll 492cdf0e10cSrcweirgb_Library_MAJORVER := 3 493cdf0e10cSrcweirgb_Library_RTEXT := MSC$(gb_Library_DLLEXT) 4943d2a2350SHerbert Dürr 4953d2a2350SHerbert Dürrifeq ($(USE_SYSTEM_STL),YES) 4963d2a2350SHerbert Dürrifeq ($(gb_PRODUCT),$(true)) 4973d2a2350SHerbert Dürrgb_Library_STLEXT := msvcprt.lib 4983d2a2350SHerbert Dürrelse 49923f1be86SHerbert Dürrgb_Library_STLEXT := msvcprt.lib 5003d2a2350SHerbert Dürrendif 5013d2a2350SHerbert Dürrelse 502cdf0e10cSrcweirifeq ($(gb_PRODUCT),$(true)) 503cdf0e10cSrcweirgb_Library_STLEXT := port_vc7145$(gb_Library_DLLEXT) 504cdf0e10cSrcweirelse 505cdf0e10cSrcweirgb_Library_STLEXT := port_vc7145_stldebug$(gb_Library_DLLEXT) 506cdf0e10cSrcweirendif 5073d2a2350SHerbert Dürrendif 5083d2a2350SHerbert Dürr 5095f9a7a39SHerbert Dürrgb_Library_OOOEXT := $(gb_Library_DLLEXT) 510cdf0e10cSrcweirgb_Library_UNOEXT := .uno$(gb_Library_DLLEXT) 511cdf0e10cSrcweirgb_Library_UNOVEREXT := $(gb_Library_MAJORVER)$(gb_Library_DLLEXT) 512cdf0e10cSrcweirgb_Library_RTVEREXT := $(gb_Library_MAJORVER)$(gb_Library_RTEXT) 513cdf0e10cSrcweir 514cdf0e10cSrcweirgb_Library_DLLFILENAMES :=\ 515cdf0e10cSrcweir $(foreach lib,$(gb_Library_OOOLIBS),$(lib):$(lib)$(gb_Library_OOOEXT)) \ 516cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_NONE),$(lib):$(lib)$(gb_Library_DLLEXT)) \ 517cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):$(lib)$(gb_Library_DLLEXT)) \ 518cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):$(lib)$(gb_Library_DLLEXT)) \ 519cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTLIBS),$(lib):$(lib)$(gb_Library_RTEXT)) \ 520cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTVERLIBS),$(lib):$(lib)$(gb_Library_RTVEREXT)) \ 521cdf0e10cSrcweir $(foreach lib,$(gb_Library_STLLIBS),$(lib):$(lib)$(gb_Library_STLEXT)) \ 522cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):$(lib)$(gb_Library_UNOEXT)) \ 523cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):$(lib)$(gb_Library_UNOEXT)) \ 524cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):$(lib)$(gb_Library_UNOVEREXT)) \ 525cdf0e10cSrcweir 526cdf0e10cSrcweirdefine gb_Library_Library_platform 527cdf0e10cSrcweir$(call gb_LinkTarget_set_dlltarget,$(2),$(3)) 528cdf0e10cSrcweir 529cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\ 530cdf0e10cSrcweir $(patsubst %.lib,%.exp,$(call gb_LinkTarget_get_target,$(2))) \ 531cdf0e10cSrcweir $(3).manifest \ 532cdf0e10cSrcweir $(call gb_LinkTarget_get_pdbfile,$(2)) \ 533cdf0e10cSrcweir $(patsubst %.dll,%.pdb,$(3)) \ 534cdf0e10cSrcweir $(patsubst %.dll,%.ilk,$(3)) \ 535cdf0e10cSrcweir) 536cdf0e10cSrcweir 537cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) \ 538cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : AUXTARGETS := $(OUTDIR)/bin/$(notdir $(3)) 539cdf0e10cSrcweir 540cdf0e10cSrcweirifneq ($(ENABLE_CRASHDUMP),) 541cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) \ 542cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : AUXTARGETS += \ 543cdf0e10cSrcweir $(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.pdb,$(3))) \ 544cdf0e10cSrcweir $(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.ilk,$(3))) \ 545cdf0e10cSrcweir 546b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.pdb,$(3))),$(patsubst %.dll,%.pdb,$(3)),$(1)) 547b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.ilk,$(3))),$(patsubst %.dll,%.ilk,$(3)),$(1)) 548cdf0e10cSrcweirendif 549cdf0e10cSrcweir 550b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(OUTDIR)/bin/$(notdir $(3)),$(3),$(1)) 551cdf0e10cSrcweir 552cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \ 553cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2)) 554*8e6bd3e9SDon Lewisifeq ($(gb_FULLDEPS),$(true)) 555*8e6bd3e9SDon Lewis$(call gb_LinkTarget_get_dep_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2)) 556*8e6bd3e9SDon Lewisendif 557cdf0e10cSrcweirendef 558cdf0e10cSrcweir 559cdf0e10cSrcweirdefine gb_Library_add_default_nativeres 560cdf0e10cSrcweir$(call gb_WinResTarget_WinResTarget_init,$(1)/$(2)) 561cdf0e10cSrcweir$(call gb_WinResTarget_add_file,$(1)/$(2),solenv/inc/shlinfo) 562cdf0e10cSrcweir$(call gb_WinResTarget_set_defs,$(1)/$(2),\ 563cdf0e10cSrcweir $$(DEFS) \ 564cdf0e10cSrcweir -DADDITIONAL_VERINFO1 \ 565cdf0e10cSrcweir -DADDITIONAL_VERINFO2 \ 566cdf0e10cSrcweir -DADDITIONAL_VERINFO3 \ 567cdf0e10cSrcweir) 568cdf0e10cSrcweir$(call gb_Library_add_nativeres,$(1),$(2)) 569cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_WinResTarget_get_clean_target,$(1)/$(2)) 570cdf0e10cSrcweir 571cdf0e10cSrcweirendef 572cdf0e10cSrcweir 573cdf0e10cSrcweirdefine gb_Library_add_nativeres 574cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(call gb_Library__get_linktargetname,$(1))) : $(call gb_WinResTarget_get_target,$(1)/$(2)) 575cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(call gb_Library__get_linktargetname,$(1))) : NATIVERES += $(call gb_WinResTarget_get_target,$(1)/$(2)) 576cdf0e10cSrcweir 577cdf0e10cSrcweirendef 578cdf0e10cSrcweir 579cdf0e10cSrcweirdefine gb_Library_get_dllname 580cdf0e10cSrcweir$(patsubst $(1):%,%,$(filter $(1):%,$(gb_Library_DLLFILENAMES))) 581cdf0e10cSrcweirendef 582cdf0e10cSrcweir 583cdf0e10cSrcweir 584cdf0e10cSrcweir# StaticLibrary class 585cdf0e10cSrcweir 586cdf0e10cSrcweirgb_StaticLibrary_DEFS := 587cdf0e10cSrcweirgb_StaticLibrary_TARGETTYPEFLAGS := -LIB 588cdf0e10cSrcweirgb_StaticLibrary_SYSPRE := 589cdf0e10cSrcweirgb_StaticLibrary_PLAINEXT := .lib 590cdf0e10cSrcweirgb_StaticLibrary_JPEGEXT := lib$(gb_StaticLibrary_PLAINEXT) 591cdf0e10cSrcweir 592cdf0e10cSrcweirgb_StaticLibrary_FILENAMES := \ 593cdf0e10cSrcweir $(foreach lib,$(gb_StaticLibrary_JPEGLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_JPEGEXT)) \ 594cdf0e10cSrcweir $(foreach lib,$(gb_StaticLibrary_PLAINLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_PLAINEXT)) \ 595cdf0e10cSrcweir 596cdf0e10cSrcweirgb_StaticLibrary_FILENAMES := $(patsubst salcpprt:salcpprt%,salcpprt:cpprtl%,$(gb_StaticLibrary_FILENAMES)) 597cdf0e10cSrcweir 598cdf0e10cSrcweirdefine gb_StaticLibrary_StaticLibrary_platform 599cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \ 600cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2)) 601cdf0e10cSrcweir 602cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\ 603cdf0e10cSrcweir $(call gb_LinkTarget_get_pdbfile,$(2)) \ 604cdf0e10cSrcweir) 605cdf0e10cSrcweir 606cdf0e10cSrcweirendef 607cdf0e10cSrcweir 608cdf0e10cSrcweir# Executable class 609cdf0e10cSrcweir 610cdf0e10cSrcweirgb_Executable_EXT := .exe 61164f1f997SHerbert Dürrgb_Executable_TARGETTYPEFLAGS := -RELEASE -BASE:0x1b000000 -OPT:NOREF -INCREMENTAL:NO -DEBUG -SAFESEH -NXCOMPAT -DYNAMICBASE 612cdf0e10cSrcweirgb_Executable_get_rpath := 613b63233d8Sdamjangb_Executable_TARGETGUI := 614cdf0e10cSrcweir 615cdf0e10cSrcweirdefine gb_Executable_Executable_platform 616cdf0e10cSrcweir$(call gb_LinkTarget_set_auxtargets,$(2),\ 617cdf0e10cSrcweir $(patsubst %.exe,%.pdb,$(call gb_LinkTarget_get_target,$(2))) \ 618cdf0e10cSrcweir $(call gb_LinkTarget_get_pdbfile,$(2)) \ 619cdf0e10cSrcweir $(call gb_LinkTarget_get_target,$(2)).manifest \ 620cdf0e10cSrcweir) 621cdf0e10cSrcweir 622cdf0e10cSrcweir$(call gb_Executable_get_target,$(1)) \ 623cdf0e10cSrcweir$(call gb_Executable_get_clean_target,$(1)) : AUXTARGETS := $(call gb_Executable_get_target,$(1)).manifest 624b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(call gb_Executable_get_target,$(1)).manifest,$(call gb_LinkTarget_get_target,$(2)).manifest,$(1)) 625cdf0e10cSrcweir 626cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) \ 627cdf0e10cSrcweir$(call gb_LinkTarget_get_headers_target,$(2)) : PDBFILE = $(call gb_LinkTarget_get_pdbfile,$(2)) 628cdf0e10cSrcweir 629cdf0e10cSrcweirendef 630cdf0e10cSrcweir 631e75d772dSDamjan Jovanovic# GoogleTest class 632e75d772dSDamjan Jovanovic 633e75d772dSDamjan Jovanovicgb_GoogleTest_GTESTPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin" 634e75d772dSDamjan Jovanovicgb_GoogleTest_get_filename = $(1)$(gb_Executable_EXT) 635e75d772dSDamjan Jovanovic 636e75d772dSDamjan Jovanovicdefine gb_GoogleTest_GoogleTest_platform 637e75d772dSDamjan Jovanovicendef 638e75d772dSDamjan Jovanovic 639cdf0e10cSrcweir# JunitTest class 640cdf0e10cSrcweir 641cdf0e10cSrcweirdefine gb_JunitTest_JunitTest_platform 642cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)) : DEFS := \ 64364c5c8b7SDamjan Jovanovic -Dorg.openoffice.test.arg.soffice="$$$${OOO_TEST_SOFFICE:-path:$(SRCDIR)/instsetoo_native/$(INPATH)/Apache_OpenOffice/installed/install/en-US/OpenOffice 4/program/soffice.exe}" \ 644cdf0e10cSrcweir -Dorg.openoffice.test.arg.env=PATH \ 645cdf0e10cSrcweir -Dorg.openoffice.test.arg.user=file:///$(call gb_JunitTest_get_userdir,$(1)) \ 646cdf0e10cSrcweir 647cdf0e10cSrcweirendef 648cdf0e10cSrcweir 649cdf0e10cSrcweir 650cdf0e10cSrcweir# SdiTarget class 651cdf0e10cSrcweir 652cdf0e10cSrcweirgb_SdiTarget_SVIDLPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin" 653cdf0e10cSrcweir 654cdf0e10cSrcweir# SrsPartMergeTarget 655cdf0e10cSrcweir 656cdf0e10cSrcweirgb_SrsPartMergeTarget_TRANSEXPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin" 657cdf0e10cSrcweir 658cdf0e10cSrcweir# SrsPartTarget class 659cdf0e10cSrcweir 660cdf0e10cSrcweirgb_SrsPartTarget_RSCTARGET := $(OUTDIR)/bin/rsc.exe 661cdf0e10cSrcweirgb_SrsPartTarget_RSCCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_SrsPartTarget_RSCTARGET) 662cdf0e10cSrcweir 663cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true)) 664cdf0e10cSrcweirdefine gb_SrsPartTarget__command_dep 665cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 666cdf0e10cSrcweir $(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \ 667cdf0e10cSrcweir $(INCLUDE) \ 668cdf0e10cSrcweir $(DEFS) \ 669cdf0e10cSrcweir $(2) \ 670cdf0e10cSrcweir -f - \ 671cdf0e10cSrcweir | $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \ 672cdf0e10cSrcweir -v OBJECTFILE=$(call gb_SrsPartTarget_get_target,$(1)) \ 673cdf0e10cSrcweir -v OUTDIR=$(OUTDIR)/ \ 674cdf0e10cSrcweir -v WORKDIR=$(WORKDIR)/ \ 675cdf0e10cSrcweir -v SRCDIR=$(SRCDIR)/ \ 676cdf0e10cSrcweir -v REPODIR=$(REPODIR)/ \ 677cdf0e10cSrcweir > $(call gb_SrsPartTarget_get_dep_target,$(1))) 678cdf0e10cSrcweirendef 679cdf0e10cSrcweirelse 680cdf0e10cSrcweirgb_SrsPartTarget__command_dep = 681cdf0e10cSrcweirendif 682cdf0e10cSrcweir 683cdf0e10cSrcweir# WinResTarget class 684cdf0e10cSrcweir 685cdf0e10cSrcweirgb_WinResTarget_POSTFIX :=.res 686cdf0e10cSrcweir 687cdf0e10cSrcweirdefine gb_WinResTarget__command 688cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),RES,3) 689cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 690cdf0e10cSrcweir mkdir -p $(dir $(1)) && \ 691cdf0e10cSrcweir $(gb_RC) \ 692cdf0e10cSrcweir $(DEFS) $(FLAGS) \ 693cdf0e10cSrcweir -I$(dir $(3)) \ 694cdf0e10cSrcweir $(INCLUDE) \ 695cdf0e10cSrcweir -Fo$(1) \ 696cdf0e10cSrcweir $(RCFILE) ) 697cdf0e10cSrcweirendef 698cdf0e10cSrcweir 699cdf0e10cSrcweir$(eval $(call gb_Helper_make_dep_targets,\ 700cdf0e10cSrcweir WinResTarget \ 701cdf0e10cSrcweir)) 702cdf0e10cSrcweir 703cdf0e10cSrcweirifeq ($(gb_FULLDEPS),$(true)) 704cdf0e10cSrcweirdefine gb_WinResTarget__command_dep 705cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs_native,\ 706cdf0e10cSrcweir $(OUTDIR)/bin/makedepend$(gb_Executable_EXT) \ 707cdf0e10cSrcweir $(INCLUDE) \ 708cdf0e10cSrcweir $(DEFS) \ 709cdf0e10cSrcweir $(2) \ 710cdf0e10cSrcweir -f - \ 711cdf0e10cSrcweir | $(gb_AWK) -f $(GBUILDDIR)/processdeps.awk \ 712cdf0e10cSrcweir -v OBJECTFILE=$(call gb_WinResTarget_get_target,$(1)) \ 713cdf0e10cSrcweir -v OUTDIR=$(OUTDIR)/ \ 714cdf0e10cSrcweir -v WORKDIR=$(WORKDIR)/ \ 715cdf0e10cSrcweir -v SRCDIR=$(SRCDIR)/ \ 716cdf0e10cSrcweir -v REPODIR=$(REPODIR)/ \ 717cdf0e10cSrcweir > $(call gb_WinResTarget_get_dep_target,$(1))) 718cdf0e10cSrcweirendef 719cdf0e10cSrcweirelse 720cdf0e10cSrcweirgb_WinResTarget__command_dep = 721cdf0e10cSrcweirendif 722cdf0e10cSrcweir 723cdf0e10cSrcweir# ComponentTarget 724cdf0e10cSrcweir 725cdf0e10cSrcweirgb_XSLTPROCPRECOMMAND := PATH="$${PATH}:$(OUTDIR)/bin" 726cdf0e10cSrcweirgb_Library_COMPONENTPREFIXES := \ 727910823aeSJürgen Schmidt OOO:vnd.sun.star.expand:\dOOO_BASE_DIR/program/ \ 728cdf0e10cSrcweir URELIB:vnd.sun.star.expand:\dURE_INTERNAL_LIB_DIR/ \ 729b63233d8Sdamjan NONE:vnd.sun.star.expand:\dOOO_INBUILD_SHAREDLIB_DIR/ \ 730b63233d8Sdamjan 731b63233d8Sdamjan# UnoApiTarget 732b63233d8Sdamjan 733b63233d8Sdamjangb_UnoApiTarget_IDLCTARGET := $(OUTDIR)/bin/idlc.exe 734b63233d8Sdamjangb_UnoApiTarget_IDLCCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_IDLCTARGET) 735b63233d8Sdamjangb_UnoApiTarget_REGMERGETARGET := $(OUTDIR)/bin/regmerge.exe 736b63233d8Sdamjangb_UnoApiTarget_REGMERGECOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGMERGETARGET) 737b63233d8Sdamjangb_UnoApiTarget_REGCOMPARETARGET := $(OUTDIR)/bin/regcompare.exe 738b63233d8Sdamjangb_UnoApiTarget_REGCOMPARECOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGCOMPARETARGET) 739b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERTARGET := $(OUTDIR)/bin/cppumaker.exe 740b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_CPPUMAKERTARGET) 741b63233d8Sdamjangb_UnoApiTarget_REGVIEWTARGET := $(OUTDIR)/bin/regview.exe 742b63233d8Sdamjangb_UnoApiTarget_REGVIEWCOMMAND := SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGVIEWTARGET) 743cdf0e10cSrcweir 744cdf0e10cSrcweir# vim: set noet sw=4 ts=4: 745