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 := UNX 25cdf0e10cSrcweirCOM := GCC 26cdf0e10cSrcweir 27cdf0e10cSrcweirgb_MKTEMP := mktemp -t gbuild.XXXXXX 28cdf0e10cSrcweir 29cdf0e10cSrcweirgb_CC := gcc 30cdf0e10cSrcweirgb_CXX := g++ 31cdf0e10cSrcweirgb_GCCP := gcc 32cdf0e10cSrcweirgb_AR := ar 33cdf0e10cSrcweirgb_AWK := awk 34cdf0e10cSrcweirgb_CLASSPATHSEP := : 35cdf0e10cSrcweir 36cdf0e10cSrcweir# normalize setsolar and configure env. 37cdf0e10cSrcweirifeq ($(CPU),X) 38cdf0e10cSrcweirCPUNAME := X86_64 39cdf0e10cSrcweirendif 40cdf0e10cSrcweir 41cdf0e10cSrcweir# use CC/CXX if they are nondefaults 42cdf0e10cSrcweirifneq ($(origin CC),default) 43cdf0e10cSrcweirgb_CC := $(CC) 44cdf0e10cSrcweirgb_GCCP := $(CC) 45cdf0e10cSrcweirendif 46cdf0e10cSrcweirifneq ($(origin CXX),default) 47cdf0e10cSrcweirgb_CXX := $(CXX) 48cdf0e10cSrcweirendif 49cdf0e10cSrcweir 50cdf0e10cSrcweirgb_OSDEFS := \ 51cdf0e10cSrcweir -D$(OS) \ 52cdf0e10cSrcweir -D_PTHREADS \ 53cdf0e10cSrcweir -DUNIX \ 54cdf0e10cSrcweir -DUNX \ 55cdf0e10cSrcweir $(PTHREAD_CFLAGS) \ 56cdf0e10cSrcweir 57cdf0e10cSrcweirifeq ($(GXX_INCLUDE_PATH),) 58cdf0e10cSrcweirGXX_INCLUDE_PATH=$(COMPATH)/include/c++/$(shell gcc -dumpversion) 59cdf0e10cSrcweirendif 60cdf0e10cSrcweir 61cdf0e10cSrcweirgb_COMPILERDEFS := \ 62cdf0e10cSrcweir -D$(COM) \ 63cdf0e10cSrcweir -DHAVE_GCC_VISIBILITY_FEATURE \ 64cdf0e10cSrcweir -DCPPU_ENV=gcc3 \ 65cdf0e10cSrcweir -DGXX_INCLUDE_PATH=$(GXX_INCLUDE_PATH) \ 66cdf0e10cSrcweir 67cdf0e10cSrcweirifeq ($(CPUNAME),X86_64) 68cdf0e10cSrcweirgb_CPUDEFS := -D$(CPUNAME) 69cdf0e10cSrcweirelse 70cdf0e10cSrcweirgb_CPUDEFS := -DX86 71cdf0e10cSrcweirendif 72cdf0e10cSrcweir 73cdf0e10cSrcweirgb_CFLAGS := \ 74cdf0e10cSrcweir -Wall \ 75cdf0e10cSrcweir -Wendif-labels \ 76cdf0e10cSrcweir -Wextra \ 77cdf0e10cSrcweir -Wshadow \ 78cdf0e10cSrcweir -fPIC \ 79cdf0e10cSrcweir -fmessage-length=0 \ 80cdf0e10cSrcweir -fno-common \ 81cdf0e10cSrcweir -fno-strict-aliasing \ 82cdf0e10cSrcweir -fvisibility=hidden \ 83cdf0e10cSrcweir -pipe \ 84cdf0e10cSrcweir 85cdf0e10cSrcweirgb_CXXFLAGS := \ 86cdf0e10cSrcweir -Wall \ 87cdf0e10cSrcweir -Wendif-labels \ 88cdf0e10cSrcweir -Wextra \ 89cdf0e10cSrcweir -Wno-ctor-dtor-privacy \ 90cdf0e10cSrcweir -Wno-non-virtual-dtor \ 91cdf0e10cSrcweir -Wshadow \ 92cdf0e10cSrcweir -fPIC \ 93cdf0e10cSrcweir -fmessage-length=0 \ 94cdf0e10cSrcweir -fno-common \ 95cdf0e10cSrcweir -fno-strict-aliasing \ 964d340eebSAndrea Pescetti -fuse-cxa-atexit \ 97cdf0e10cSrcweir -fvisibility-inlines-hidden \ 98cdf0e10cSrcweir -fvisibility=hidden \ 99cdf0e10cSrcweir -pipe \ 100cdf0e10cSrcweir 101cdf0e10cSrcweirifneq ($(EXTERNAL_WARNINGS_NOT_ERRORS),TRUE) 102cdf0e10cSrcweirgb_CFLAGS_WERROR := -Werror 103cdf0e10cSrcweirgb_CXXFLAGS_WERROR := -Werror 104cdf0e10cSrcweirendif 105cdf0e10cSrcweir 106cdf0e10cSrcweirifneq ($(strip $(SYSBASE)),) 107cdf0e10cSrcweirgb_CXXFLAGS += --sysroot=$(SYSBASE) 108cdf0e10cSrcweirgb_CFLAGS += --sysroot=$(SYSBASE) 10927520587SHerbert Dürrgb_LinkTarget_LDFLAGS := -Wl,--sysroot=$(SYSBASE) 110cdf0e10cSrcweirendif 111cdf0e10cSrcweirgb_LinkTarget_EXCEPTIONFLAGS := \ 112cdf0e10cSrcweir -DEXCEPTIONS_ON \ 113cdf0e10cSrcweir -fexceptions \ 114cdf0e10cSrcweir -fno-enforce-eh-specs \ 115cdf0e10cSrcweir 116cdf0e10cSrcweirgb_LinkTarget_NOEXCEPTIONFLAGS := \ 117cdf0e10cSrcweir -DEXCEPTIONS_OFF \ 118cdf0e10cSrcweir -fno-exceptions \ 119cdf0e10cSrcweir 12027520587SHerbert Dürrgb_LinkTarget_LDFLAGS += \ 121cdf0e10cSrcweir -Wl,-rpath-link,$(SYSBASE)/lib:$(SYSBASE)/usr/lib \ 122cdf0e10cSrcweir -Wl,-z,combreloc \ 123cdf0e10cSrcweir -Wl,-z,defs \ 124cdf0e10cSrcweir $(subst -L../lib , ,$(SOLARLIB)) \ 125cdf0e10cSrcweir 126cdf0e10cSrcweirifeq ($(HAVE_LD_HASH_STYLE),TRUE) 127cdf0e10cSrcweirgb_LinkTarget_LDFLAGS += \ 128cdf0e10cSrcweir -Wl,--hash-style=both \ 129cdf0e10cSrcweir 130cdf0e10cSrcweirendif 131cdf0e10cSrcweir 132cdf0e10cSrcweirifneq ($(HAVE_LD_BSYMBOLIC_FUNCTIONS),) 133cdf0e10cSrcweirgb_LinkTarget_LDFLAGS += \ 134cdf0e10cSrcweir -Wl,--dynamic-list-cpp-new \ 135cdf0e10cSrcweir -Wl,--dynamic-list-cpp-typeinfo \ 136cdf0e10cSrcweir -Wl,-Bsymbolic-functions \ 137cdf0e10cSrcweir 138cdf0e10cSrcweirendif 139cdf0e10cSrcweir 140b63233d8Sdamjanifeq ($(gb_DEBUGLEVEL),0) 141b63233d8Sdamjangb_LinkTarget_LDFLAGS += -Wl,-O1 142b63233d8Sdamjanendif 143b63233d8Sdamjan 144b63233d8Sdamjangb_DEBUG_CFLAGS := -ggdb3 -finline-limit=0 -fno-inline -fno-default-inline 145b63233d8Sdamjan 146cdf0e10cSrcweirifeq ($(gb_DEBUGLEVEL),2) 147cdf0e10cSrcweirgb_COMPILEROPTFLAGS := -O0 148cdf0e10cSrcweirelse 149cdf0e10cSrcweirgb_COMPILEROPTFLAGS := -Os 150cdf0e10cSrcweirendif 151cdf0e10cSrcweir 152cdf0e10cSrcweirgb_COMPILERNOOPTFLAGS := -O0 153cdf0e10cSrcweir 154cdf0e10cSrcweir# Helper class 155cdf0e10cSrcweir 156cdf0e10cSrcweirgb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs) 157cdf0e10cSrcweir 158cdf0e10cSrcweir# convert parametters filesystem root to native notation 159cdf0e10cSrcweir# does some real work only on windows, make sure not to 160cdf0e10cSrcweir# break the dummy implementations on unx* 161cdf0e10cSrcweirdefine gb_Helper_convert_native 162cdf0e10cSrcweir$(1) 163cdf0e10cSrcweirendef 164cdf0e10cSrcweir 165cdf0e10cSrcweir# CObject class 166cdf0e10cSrcweir 167b63233d8Sdamjan# $(call gb_CObject__command,object,relative-source,source,dep-file) 168cdf0e10cSrcweirdefine gb_CObject__command 169cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),C ,3) 170cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs,\ 171b63233d8Sdamjan mkdir -p $(dir $(1)) $(dir $(4)) && \ 172cdf0e10cSrcweir $(gb_CC) \ 173b63233d8Sdamjan $(DEFS) \ 174b63233d8Sdamjan $(T_CFLAGS) \ 175cdf0e10cSrcweir -c $(3) \ 176cdf0e10cSrcweir -o $(1) \ 177b63233d8Sdamjan -MMD -MT $(1) \ 178b63233d8Sdamjan -MF $(4) \ 179cdf0e10cSrcweir -I$(dir $(3)) \ 180cdf0e10cSrcweir $(INCLUDE)) 181cdf0e10cSrcweirendef 182cdf0e10cSrcweir 183b63233d8Sdamjan# convert parametters filesystem root to native notation 184b63233d8Sdamjan# does some real work only on windows, make sure not to 185b63233d8Sdamjan# break the dummy implementations on unx* 186b63233d8Sdamjandefine gb_Helper_convert_native 187b63233d8Sdamjan$(1) 188b63233d8Sdamjanendef 189cdf0e10cSrcweir 190cdf0e10cSrcweir# CxxObject class 191cdf0e10cSrcweir 192b63233d8Sdamjan# $(call gb_CxxObject__command,object,relative-source,source,dep-file) 193cdf0e10cSrcweirdefine gb_CxxObject__command 194cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),CXX,3) 195cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs,\ 196b63233d8Sdamjan mkdir -p $(dir $(1)) $(dir $(4)) && \ 197cdf0e10cSrcweir $(gb_CXX) \ 198b63233d8Sdamjan $(DEFS) \ 199b63233d8Sdamjan $(T_CXXFLAGS) \ 200cdf0e10cSrcweir -c $(3) \ 201cdf0e10cSrcweir -o $(1) \ 202b63233d8Sdamjan -MMD -MT $(1) \ 203b63233d8Sdamjan -MF $(4) \ 204cdf0e10cSrcweir -I$(dir $(3)) \ 205cdf0e10cSrcweir $(INCLUDE_STL) $(INCLUDE)) 206cdf0e10cSrcweirendef 207cdf0e10cSrcweir 208cdf0e10cSrcweir 209cdf0e10cSrcweir# LinkTarget class 210cdf0e10cSrcweir 211cdf0e10cSrcweirdefine gb_LinkTarget__get_rpath_for_layer 212cdf0e10cSrcweir$(patsubst $(1):%,%,$(filter $(1):%,$(gb_LinkTarget__RPATHS))) 213cdf0e10cSrcweirendef 214cdf0e10cSrcweir 215cdf0e10cSrcweirgb_LinkTarget__RPATHS := \ 216cdf0e10cSrcweir URELIB:\dORIGIN \ 217cdf0e10cSrcweir UREBIN:\dORIGIN/../lib:\dORIGIN \ 218cdf0e10cSrcweir OOO:\dORIGIN:\dORIGIN/../ure-link/lib \ 219cdf0e10cSrcweir BRAND:\dORIGIN:\dORIGIN/../basis-link/program:\dORIGIN/../basis-link/ure-link/lib \ 220cdf0e10cSrcweir SDKBIN:\dORIGIN/../../ure-link/lib \ 221cdf0e10cSrcweir NONEBIN:\dORIGIN/../lib:\dORIGIN \ 222cdf0e10cSrcweir 223b63233d8Sdamjangb_LinkTarget_CFLAGS := $(gb_CFLAGS) $(gb_CFLAGS_WERROR) 224cdf0e10cSrcweirgb_LinkTarget_CXXFLAGS := $(gb_CXXFLAGS) $(gb_CXXFLAGS_WERROR) 225cdf0e10cSrcweir 226cdf0e10cSrcweir 227cdf0e10cSrcweirgb_LinkTarget_INCLUDE := $(filter-out %/stl, $(subst -I. , ,$(SOLARINC))) 228cdf0e10cSrcweirgb_LinkTarget_INCLUDE_STL := $(filter %/stl, $(subst -I. , ,$(SOLARINC))) 229cdf0e10cSrcweir 230cdf0e10cSrcweirdefine gb_LinkTarget__command_dynamiclink 231cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs,\ 232cdf0e10cSrcweir mkdir -p $(dir $(1)) && \ 233cdf0e10cSrcweir $(gb_CXX) \ 234dfce871fSDamjan Jovanovic $(if $(filter Library,$(TARGETTYPE)),$(gb_Library_TARGETTYPEFLAGS)) \ 235b63233d8Sdamjan $(subst \d,$$,$(RPATH)) \ 236b63233d8Sdamjan $(T_LDFLAGS) \ 237cdf0e10cSrcweir $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \ 238cdf0e10cSrcweir $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \ 239cdf0e10cSrcweir $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \ 2409b09309dSdamjan -Wl$(COMMA)--start-group $(foreach lib,$(LINKED_STATIC_LIBS),$(call gb_StaticLibrary_get_target,$(lib))) -Wl$(COMMA)--end-group \ 24144c25570SAndre Fischer $(patsubst lib%.so,-l%,$(foreach lib,$(LINKED_LIBS),$(call gb_Library_get_filename,$(lib)))) \ 24244c25570SAndre Fischer $(patsubst %,-l%,$(EXTERNAL_LIBS)) \ 243b63233d8Sdamjan $(LIBS) \ 244c30f6fe3Sdamjan -lc \ 245cdf0e10cSrcweir -o $(1)) 246cdf0e10cSrcweirendef 247cdf0e10cSrcweir 248cdf0e10cSrcweirdefine gb_LinkTarget__command_staticlink 249cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs,\ 250cdf0e10cSrcweir mkdir -p $(dir $(1)) && \ 251cdf0e10cSrcweir $(gb_AR) -rsu $(1) \ 252cdf0e10cSrcweir $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \ 253cdf0e10cSrcweir $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \ 254cdf0e10cSrcweir $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \ 255cdf0e10cSrcweir 2> /dev/null) 256cdf0e10cSrcweirendef 257cdf0e10cSrcweir 258cdf0e10cSrcweirdefine gb_LinkTarget__command 259cdf0e10cSrcweir$(call gb_Output_announce,$(2),$(true),LNK,4) 260dfce871fSDamjan Jovanovic$(if $(filter Library GoogleTest Executable,$(TARGETTYPE)),$(call gb_LinkTarget__command_dynamiclink,$(1))) 261cdf0e10cSrcweir$(if $(filter StaticLibrary,$(TARGETTYPE)),$(call gb_LinkTarget__command_staticlink,$(1))) 262cdf0e10cSrcweirendef 263cdf0e10cSrcweir 264cdf0e10cSrcweir 265cdf0e10cSrcweir# Library class 266cdf0e10cSrcweir 267cdf0e10cSrcweirgb_Library_DEFS := 268cdf0e10cSrcweirgb_Library_TARGETTYPEFLAGS := -shared -Wl,-z,noexecstack 269cdf0e10cSrcweirgb_Library_SYSPRE := lib 270cdf0e10cSrcweirgb_Library_UNOVERPRE := $(gb_Library_SYSPRE)uno_ 271cdf0e10cSrcweirgb_Library_PLAINEXT := .so 272cdf0e10cSrcweirgb_Library_RTEXT := gcc3$(gb_Library_PLAINEXT) 273cdf0e10cSrcweirifeq ($(gb_PRODUCT),$(true)) 274cdf0e10cSrcweirgb_Library_STLEXT := port_gcc$(gb_Library_PLAINEXT) 275cdf0e10cSrcweirelse 276cdf0e10cSrcweirgb_Library_STLEXT := port_gcc_stldebug$(gb_Library_PLAINEXT) 277cdf0e10cSrcweirendif 278cdf0e10cSrcweir 279cdf0e10cSrcweirifeq ($(CPUNAME),X86_64) 2805f9a7a39SHerbert Dürrgb_Library_OOOEXT := $(gb_Library_PLAINEXT) 281cdf0e10cSrcweirgb_Library_UNOEXT := .uno$(gb_Library_PLAINEXT) 282cdf0e10cSrcweirelse 2835f9a7a39SHerbert Dürrgb_Library_OOOEXT := $(gb_Library_PLAINEXT) 284cdf0e10cSrcweirgb_Library_UNOEXT := .uno$(gb_Library_PLAINEXT) 285cdf0e10cSrcweirendif 286cdf0e10cSrcweir 287cdf0e10cSrcweirgb_Library_PLAINLIBS_NONE += \ 288b63233d8Sdamjan fontconfig \ 289b63233d8Sdamjan Xrender \ 290cdf0e10cSrcweir dl \ 291828da808SPedro Giffuni freetype \ 292cdf0e10cSrcweir m \ 293cdf0e10cSrcweir pthread \ 294cdf0e10cSrcweir X11 \ 295828da808SPedro Giffuni Xext \ 296828da808SPedro Giffuni SM \ 297b63233d8Sdamjan ICE 298cdf0e10cSrcweir 299cdf0e10cSrcweirgb_Library_FILENAMES := \ 300cdf0e10cSrcweir $(foreach lib,$(gb_Library_OOOLIBS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_OOOEXT)) \ 301cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_NONE),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_PLAINEXT)) \ 302cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_PLAINEXT)) \ 303cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_PLAINEXT)) \ 304cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTLIBS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_RTEXT)) \ 305cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTVERLIBS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_RTEXT)) \ 306cdf0e10cSrcweir $(foreach lib,$(gb_Library_STLLIBS),$(lib):$(gb_Library_SYSPRE)$(lib)$(gb_Library_STLEXT)) \ 307cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):$(lib)$(gb_Library_UNOEXT)) \ 308cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):$(lib)$(gb_Library_UNOEXT)) \ 309cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):$(gb_Library_UNOVERPRE)$(lib)$(gb_Library_PLAINEXT)) \ 310cdf0e10cSrcweir 311cdf0e10cSrcweir 312cdf0e10cSrcweirgb_Library_LAYER := \ 313cdf0e10cSrcweir $(foreach lib,$(gb_Library_OOOLIBS),$(lib):OOO) \ 314cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_URE),$(lib):URELIB) \ 315cdf0e10cSrcweir $(foreach lib,$(gb_Library_PLAINLIBS_OOO),$(lib):OOO) \ 316cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTLIBS),$(lib):OOO) \ 317cdf0e10cSrcweir $(foreach lib,$(gb_Library_RTVERLIBS),$(lib):URELIB) \ 318cdf0e10cSrcweir $(foreach lib,$(gb_Library_STLLIBS),$(lib):URELIB) \ 319cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_URE),$(lib):URELIB) \ 320cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOLIBS_OOO),$(lib):OOO) \ 321cdf0e10cSrcweir $(foreach lib,$(gb_Library_UNOVERLIBS),$(lib):URELIB) \ 322cdf0e10cSrcweir 323cdf0e10cSrcweirdefine gb_Library_get_rpath 324cdf0e10cSrcweir'-Wl,-rpath,$(call gb_LinkTarget__get_rpath_for_layer,$(call gb_Library_get_layer,$(1)))' \ 325cdf0e10cSrcweir'-Wl,-rpath-link,$(gb_Library_OUTDIRLOCATION)' 326cdf0e10cSrcweirendef 327cdf0e10cSrcweir 328cdf0e10cSrcweirdefine gb_Library_Library_platform 329cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) : RPATH := $(call gb_Library_get_rpath,$(1)) 330cdf0e10cSrcweir 331cdf0e10cSrcweirendef 332cdf0e10cSrcweir 333cdf0e10cSrcweir 334cdf0e10cSrcweir# StaticLibrary class 335cdf0e10cSrcweir 336cdf0e10cSrcweirgb_StaticLibrary_DEFS := 337cdf0e10cSrcweirgb_StaticLibrary_SYSPRE := lib 338cdf0e10cSrcweirgb_StaticLibrary_PLAINEXT := .a 339cdf0e10cSrcweirgb_StaticLibrary_JPEGEXT := lib$(gb_StaticLibrary_PLAINEXT) 340cdf0e10cSrcweir 341cdf0e10cSrcweirgb_StaticLibrary_FILENAMES := \ 342cdf0e10cSrcweir $(foreach lib,$(gb_StaticLibrary_JPEGLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_JPEGEXT)) \ 343cdf0e10cSrcweir $(foreach lib,$(gb_StaticLibrary_PLAINLIBS),$(lib):$(gb_StaticLibrary_SYSPRE)$(lib)$(gb_StaticLibrary_PLAINEXT)) \ 344cdf0e10cSrcweir 345cdf0e10cSrcweirgb_StaticLibrary_StaticLibrary_platform = 346cdf0e10cSrcweir 347cdf0e10cSrcweir 348cdf0e10cSrcweir# Executable class 349cdf0e10cSrcweir 350cdf0e10cSrcweirgb_Executable_EXT := 351cdf0e10cSrcweir 352cdf0e10cSrcweirgb_Executable_LAYER := \ 353cdf0e10cSrcweir $(foreach exe,$(gb_Executable_UREBIN),$(exe):UREBIN) \ 354cdf0e10cSrcweir $(foreach exe,$(gb_Executable_SDK),$(exe):SDKBIN) \ 355cdf0e10cSrcweir $(foreach exe,$(gb_Executable_OOO),$(exe):OOO) \ 356cdf0e10cSrcweir $(foreach exe,$(gb_Executable_BRAND),$(exe):BRAND) \ 357cdf0e10cSrcweir $(foreach exe,$(gb_Executable_NONE),$(exe):NONEBIN) \ 358cdf0e10cSrcweir 359cdf0e10cSrcweir 360cdf0e10cSrcweirdefine gb_Executable_get_rpath 361cdf0e10cSrcweir'-Wl,-rpath,$(call gb_LinkTarget__get_rpath_for_layer,$(call gb_Executable_get_layer,$(1)))' \ 362cdf0e10cSrcweir-Wl,-rpath-link,$(gb_Library_OUTDIRLOCATION) 363cdf0e10cSrcweirendef 364cdf0e10cSrcweir 365cdf0e10cSrcweirdefine gb_Executable_Executable_platform 366cdf0e10cSrcweir$(call gb_LinkTarget_get_target,$(2)) : RPATH := $(call gb_Executable_get_rpath,$(1)) 367cdf0e10cSrcweir 368cdf0e10cSrcweirendef 369cdf0e10cSrcweir 370cdf0e10cSrcweir 371e75d772dSDamjan Jovanovic# GoogleTest class 372e75d772dSDamjan Jovanovic 373e75d772dSDamjan Jovanovicgb_GoogleTest_GTESTPRECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib 374e75d772dSDamjan Jovanovicgb_GoogleTest_get_filename = $(1)$(gb_Executable_EXT) 375e75d772dSDamjan Jovanovic 376e75d772dSDamjan Jovanovicdefine gb_GoogleTest_GoogleTest_platform 377e75d772dSDamjan Jovanovic$(call gb_LinkTarget_get_target,$(2)) : RPATH := -Wl,-rpath-link,$(gb_Library_OUTDIRLOCATION) 378e75d772dSDamjan Jovanovicendef 379e75d772dSDamjan Jovanovic 380cdf0e10cSrcweir# JunitTest class 381cdf0e10cSrcweir 382cdf0e10cSrcweirdefine gb_JunitTest_JunitTest_platform 383cdf0e10cSrcweir$(call gb_JunitTest_get_target,$(1)) : DEFS := \ 384*64c5c8b7SDamjan Jovanovic -Dorg.openoffice.test.arg.soffice="$$$${OOO_TEST_SOFFICE:-path:$(SRCDIR)/instsetoo_native/$(INPATH)/Apache_OpenOffice/installed/install/en-US/openoffice4/program/soffice}" \ 385cdf0e10cSrcweir -Dorg.openoffice.test.arg.env=LD_LIBRARY_PATH \ 386cdf0e10cSrcweir -Dorg.openoffice.test.arg.user=file://$(call gb_JunitTest_get_userdir,$(1)) \ 387cdf0e10cSrcweir 388cdf0e10cSrcweirendef 389cdf0e10cSrcweir 390cdf0e10cSrcweir# SdiTarget class 391cdf0e10cSrcweir 392cdf0e10cSrcweirgb_SdiTarget_SVIDLPRECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib 393cdf0e10cSrcweir 394cdf0e10cSrcweir# SrsPartMergeTarget 395cdf0e10cSrcweir 396cdf0e10cSrcweirgb_SrsPartMergeTarget_TRANSEXPRECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib 397cdf0e10cSrcweir 398cdf0e10cSrcweir# SrsPartTarget class 399cdf0e10cSrcweir 400cdf0e10cSrcweirgb_SrsPartTarget_RSCTARGET := $(OUTDIR)/bin/rsc 401cdf0e10cSrcweirgb_SrsPartTarget_RSCCOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_SrsPartTarget_RSCTARGET) 402cdf0e10cSrcweir 403cdf0e10cSrcweirdefine gb_SrsPartTarget__command_dep 404cdf0e10cSrcweir$(call gb_Helper_abbreviate_dirs,\ 405cdf0e10cSrcweir $(gb_GCCP) \ 406cdf0e10cSrcweir -MM -MT $(call gb_SrsPartTarget_get_target,$(1)) \ 407cdf0e10cSrcweir $(INCLUDE) \ 408cdf0e10cSrcweir $(DEFS) \ 409cdf0e10cSrcweir -c -x c++-header $(2) \ 410cdf0e10cSrcweir -o $(call gb_SrsPartTarget_get_dep_target,$(1))) 411cdf0e10cSrcweirendef 412cdf0e10cSrcweir 413cdf0e10cSrcweir 414cdf0e10cSrcweir# ComponentTarget 415cdf0e10cSrcweir 416cdf0e10cSrcweirgb_XSLTPROCPRECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib 417cdf0e10cSrcweirgb_Library_COMPONENTPREFIXES := \ 418cdf0e10cSrcweir OOO:vnd.sun.star.expand:\dOOO_BASE_DIR/program/ \ 419cdf0e10cSrcweir URELIB:vnd.sun.star.expand:\dURE_INTERNAL_LIB_DIR/ \ 420b63233d8Sdamjan NONE:vnd.sun.star.expand:\dOOO_INBUILD_SHAREDLIB_DIR/ \ 421b63233d8Sdamjan 422b63233d8Sdamjan# UnoApiTarget 423b63233d8Sdamjan 424b63233d8Sdamjangb_UnoApiTarget_IDLCTARGET := $(OUTDIR)/bin/idlc 425b63233d8Sdamjangb_UnoApiTarget_IDLCCOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_IDLCTARGET) 426b63233d8Sdamjangb_UnoApiTarget_REGMERGETARGET := $(OUTDIR)/bin/regmerge 427b63233d8Sdamjangb_UnoApiTarget_REGMERGECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGMERGETARGET) 428b63233d8Sdamjangb_UnoApiTarget_REGCOMPARETARGET := $(OUTDIR)/bin/regcompare 429b63233d8Sdamjangb_UnoApiTarget_REGCOMPARECOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGCOMPARETARGET) 430b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERTARGET := $(OUTDIR)/bin/cppumaker 431b63233d8Sdamjangb_UnoApiTarget_CPPUMAKERCOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_CPPUMAKERTARGET) 432b63233d8Sdamjangb_UnoApiTarget_REGVIEWTARGET := $(OUTDIR)/bin/regview 433b63233d8Sdamjangb_UnoApiTarget_REGVIEWCOMMAND := LD_LIBRARY_PATH=$(OUTDIR)/lib SOLARBINDIR=$(OUTDIR)/bin $(gb_UnoApiTarget_REGVIEWTARGET) 434cdf0e10cSrcweir 435cdf0e10cSrcweir# vim: set noet sw=4 ts=4: 436