Committing TBB 2019 Update 9 source code
[platform/upstream/tbb.git] / examples / parallel_for / game_of_life / 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=game_of_life
18 ARGS=2:4 -t 5
19 LIGHT_ARGS=1:2 -t 5
20 ifneq (,$(shell which icc 2>/dev/null))
21 CXX=icc
22 endif # icc
23
24 ifeq ($(shell uname), Linux)
25 ifeq ($(target), android)
26 LIBS+= --sysroot=$(SYSROOT)
27 run_cmd=../../common/android.linux.launcher.sh
28 else
29 LIBS+= -lrt 
30 endif
31 else ifeq ($(shell uname), Darwin)
32 override CXXFLAGS += -Wl,-rpath,$(TBBROOT)/lib
33 endif
34
35 # autodetect C++11 support
36 include ../../common/examples-common.inc
37
38 all:    release test
39
40 release: src/Evolution.cpp src/Update_state.cpp src/Game_of_life.cpp
41         $(CXX) -O2 -DNDEBUG -D_CONSOLE $(CXXFLAGS) -o $(PROG) $^ -ltbb $(LIBS) $(CXX0XFLAGS)
42
43 debug: src/Evolution.cpp src/Update_state.cpp src/Game_of_life.cpp
44         $(CXX) -O0 -D_CONSOLE -g -DTBB_USE_DEBUG $(CXXFLAGS) -o $(PROG) $^ -ltbb_debug $(LIBS) $(CXX0XFLAGS)
45
46 clean:
47         rm -f $(PROG) *.o *.d
48
49 test:
50         $(run_cmd) ./$(PROG) $(ARGS)
51 light_test:
52         $(run_cmd) ./$(PROG) $(LIGHT_ARGS)