Publishing R3
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / tests / benchdnn / makefile
1 #===============================================================================
2 # Copyright 2017-2018 Intel Corporation
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #===============================================================================
16
17 CXX = g++
18 LD = g++
19
20 CXXFLAGS = -std=c++11 -g -O0 -fopenmp
21 LDFLAGS = -liomp5 -lrt -lpthread -ldl -lm
22
23 MKLDNN_ROOT ?= ../../.install
24 INC = -I$(MKLDNN_ROOT)/include -I.
25
26 build_dir = .build
27
28 srcs = $(wildcard *.cpp */*.cpp */*/*.cpp)
29 hdrs = $(wildcard *.hpp */*.hpp */*/*.hpp)
30 objs = $(addprefix $(build_dir)/,$(subst .cpp,.o,$(srcs)))
31 dirs = $(dir $(objs))
32
33 all: benchdnn
34
35 benchdnn: $(objs)
36         $(LD) $^ -o $@ \
37                 -L$(MKLDNN_ROOT)/lib -Wl,-rpath=$(MKLDNN_ROOT)/lib -lmkldnn \
38                 $(LDFLAGS)
39
40 .build/%.o: %.cpp $(hdrs) directories
41         $(CXX) $(CXXFLAGS) $(DEFS) $(INC) $< -c -o $@
42
43 .PHONY: clean directories
44 directories: ; @mkdir -p $(dirs)
45 clean: ; -rm -rf $(build_dir) benchdnn