# Copyright (c) 2005-2016 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # # # ifndef arch ifeq ($(shell uname -m),i386) export arch:=ia32 endif ifeq ($(shell uname -m),ia64) export arch:=ia64 endif ifeq ($(shell uname -m),amd64) export arch:=intel64 endif endif ifndef runtime gcc_version:=$(shell gcc -dumpversion) os_version:=$(shell uname -r) os_kernel_version:=$(shell uname -r | sed -e 's/-.*$$//') export runtime:=cc$(gcc_version)_kernel$(os_kernel_version) endif native_compiler := gcc export compiler ?= gcc debugger ?= gdb CMD=$(SHELL) -c CWD=$(shell pwd) RM?=rm -f RD?=rmdir MD?=mkdir -p NUL= /dev/null SLASH=/ MAKE_VERSIONS=sh $(tbb_root)/build/version_info_linux.sh $(VERSION_FLAGS) >version_string.ver MAKE_TBBVARS=sh $(tbb_root)/build/generate_tbbvars.sh ifdef LD_LIBRARY_PATH export LD_LIBRARY_PATH := .:$(LD_LIBRARY_PATH) else export LD_LIBRARY_PATH := . endif ####### Build settings ######################################################## OBJ = o DLL = so LIBEXT=so TBB.LST = TBB.DEF = TBB.DLL = libtbb$(CPF_SUFFIX)$(DEBUG_SUFFIX).$(DLL) TBB.LIB = $(TBB.DLL) LINK_TBB.LIB = $(TBB.LIB) MALLOC.DLL = libtbbmalloc$(DEBUG_SUFFIX).$(DLL) MALLOC.LIB = $(MALLOC.DLL) LINK_MALLOC.LIB = $(MALLOC.LIB) TEST_LAUNCHER=sh $(tbb_root)/build/test_launcher.sh $(largs)