mirror of
https://github.com/wjakob/tbb.git
synced 2026-08-30 09:00:40 +08:00
faab196203
Closes #63
74 lines
2.4 KiB
Makefile
74 lines
2.4 KiB
Makefile
# Copyright (c) 2005-2020 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.
|
|
|
|
# GNU Makefile that builds and runs example.
|
|
run_cmd=
|
|
PROG=sub_string_finder_extended
|
|
ARGS=
|
|
LIGHT_PROG=sub_string_finder
|
|
|
|
# The C++ compiler
|
|
ifneq (,$(shell which icc 2>/dev/null))
|
|
CXX=icc
|
|
endif # icc
|
|
|
|
TBBLIB = -ltbb
|
|
TBBLIB_DEBUG = -ltbb_debug
|
|
|
|
ifneq (,$(findstring mic, $(offload)))
|
|
override CXXFLAGS += -qoffload-arch=$(offload) -qopt-report-phase:offload -D__TBB_MIC_OFFLOAD=1
|
|
# Replace -ltbb with -tbb in the offload mode
|
|
TBBLIB = -tbb
|
|
TBBLIB_DEBUG += -qoffload-option,mic,ld,"-ltbb_debug"
|
|
endif
|
|
|
|
ifeq ($(shell uname), Linux)
|
|
ifeq ($(target), android)
|
|
LIBS+= --sysroot=$(SYSROOT)
|
|
run_cmd=../../common/android.linux.launcher.sh
|
|
else
|
|
LIBS+= -lrt
|
|
endif
|
|
else ifeq ($(shell uname), Darwin)
|
|
override CXXFLAGS += -Wl,-rpath,$(TBBROOT)/lib
|
|
endif
|
|
|
|
# autodetect C++11 support
|
|
include ../../common/examples-common.inc
|
|
|
|
all: release test
|
|
|
|
release: *.cpp
|
|
ifeq ($(offload),)
|
|
$(CXX) -O2 -DNDEBUG $(CXXFLAGS) -o sub_string_finder sub_string_finder.cpp $(TBBLIB) $(LIBS) $(CXX0XFLAGS)
|
|
$(CXX) -O2 -DNDEBUG $(CXXFLAGS) -o sub_string_finder_pretty sub_string_finder_pretty.cpp $(TBBLIB) $(LIBS) $(CXX0XFLAGS)
|
|
endif
|
|
$(CXX) -O2 -DNDEBUG $(CXXFLAGS) -o sub_string_finder_extended sub_string_finder_extended.cpp $(TBBLIB) $(LIBS) $(CXX0XFLAGS)
|
|
|
|
debug: *.cpp
|
|
ifeq ($(offload),)
|
|
$(CXX) -O0 -g -DTBB_USE_DEBUG $(CXXFLAGS) -o sub_string_finder sub_string_finder.cpp $(TBBLIB_DEBUG) $(LIBS) $(CXX0XFLAGS)
|
|
$(CXX) -O0 -g -DTBB_USE_DEBUG $(CXXFLAGS) -o sub_string_finder_pretty sub_string_finder_pretty.cpp $(TBBLIB_DEBUG) $(LIBS) $(CXX0XFLAGS)
|
|
endif
|
|
$(CXX) -O0 -g -DTBB_USE_DEBUG $(CXXFLAGS) -o sub_string_finder_extended sub_string_finder_extended.cpp $(TBBLIB_DEBUG) $(LIBS) $(CXX0XFLAGS)
|
|
|
|
clean:
|
|
$(RM) sub_string_finder sub_string_finder_extended sub_string_finder_pretty *.o *.d
|
|
|
|
test:
|
|
$(run_cmd) ./$(PROG) $(ARGS)
|
|
|
|
light_test:
|
|
$(run_cmd) ./$(LIGHT_PROG) $(ARGS)
|