1aaee5ca948f38fd632d8711e9a40a76d02e39bc
[platform/upstream/tbb.git] / examples / graph / logic_sim / 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=test_all
18 ARGS=4
19 PERF_RUN_ARGS=auto silent
20
21 # The C++ compiler
22 ifneq (,$(shell which icc 2>/dev/null))
23 CXX=icc
24 endif # which icc
25
26 ifeq ($(shell uname), Linux)
27 ifeq ($(target), android)
28 LIBS+= --sysroot=$(SYSROOT)
29 run_cmd=../../common/android.linux.launcher.sh
30 else
31 LIBS+= -lrt 
32 endif
33 else ifeq ($(shell uname), Darwin)
34 override CXXFLAGS += -Wl,-rpath,$(TBBROOT)/lib
35 endif
36
37 all:    release test
38
39 release: *.cpp
40         $(CXX) -O2 -DNDEBUG $(CXXFLAGS) -o $(PROG) $(PROG).cpp -std=c++0x -ltbb $(LIBS) 
41
42 debug: *.cpp
43         $(CXX) -O0 -g -DTBB_USE_DEBUG $(CXXFLAGS) -o $(PROG) $(PROG).cpp -std=c++0x -ltbb_debug $(LIBS) 
44
45 profile: override CXXFLAGS += -DTBB_USE_THREADING_TOOLS -g
46 profile: release
47
48 clean:
49         $(RM) $(PROG) *.o *.d
50
51 test:
52         $(run_cmd) ./$(PROG) $(ARGS)
53
54 perf_build: release
55
56 perf_run:
57         $(run_cmd) ./$(PROG) $(PERF_RUN_ARGS)