Committing TBB 2019 Update 9 source code
[platform/upstream/tbb.git] / examples / graph / cholesky / Makefile
1 # Copyright (c) 2005-2019 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # GNU Makefile that builds and runs example.
16 run_cmd=
17 PROG=cholesky
18 ARGS=4 2
19
20 # The C++ compiler
21 ifneq (,$(shell which icpc 2>/dev/null))
22 CXX=icpc
23 endif # which icpc
24
25 ifeq ($(shell uname), Darwin)
26 override CXXFLAGS += -Wl,-rpath,$(TBBROOT)/lib  -Wl,-rpath,$(MKLROOT)/lib
27 # MKL support
28 override MKL_LIBS += -lmkl_intel_lp64 -lmkl_sequential -lmkl_core
29 else
30 ifeq ($(shell uname), Linux)
31 LIBS+= -lrt 
32 endif
33 # MKL support
34 override MKL_LIBS += -lmkl_rt
35 endif
36
37 # autodetect C++11 support
38 include ../../common/examples-common.inc
39
40 all:    release test
41
42 release: *.cpp
43         $(CXX) -O2  -DNDEBUG $(CXXFLAGS) -o $(PROG) $^ -ltbb $(MKL_LIBS) $(LIBS) $(CXX0XFLAGS)
44
45 debug: *.cpp
46         $(CXX) -O0 -g -DTBB_USE_DEBUG $(CXXFLAGS) -o $(PROG) $^ -ltbb_debug $(MKL_LIBS) $(LIBS) $(CXX0XFLAGS)
47
48 profile: override CXXFLAGS += -DTBB_USE_THREADING_TOOLS -g
49 profile: release
50
51 clean:
52         $(RM) $(PROG) *.o *.d
53
54 test:
55         $(run_cmd) ./$(PROG) $(ARGS)