Init basesystem source codes.
[staging/basesystem.git] / stub / diag_record / library_dummy_drec / Makefile
1 #
2 # @copyright Copyright (c) 2016-2020 TOYOTA MOTOR 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 ######### installed program #############
18 INST_SHLIBS = libMM_DREC_API
19
20 ######### install headers  #############
21 VPATH += ./include/$(COMPONENT_NAME)
22 INST_HEADERS += MM_DREC_API.h
23
24 ######### compiled sources  #############
25 libMM_DREC_API_SRCS = src/MM_DREC_API.cpp
26
27 ######### compile switch #############
28 CPPFLAGS += -I./include
29 CPPFLAGS += -I./include/stub
30 CPPFLAGS += -I./../library_record_api/include
31
32 LDFLAGS += -Wl,--no-undefined
33 CPPFLAGS += -Werror=implicit-function-declaration
34 CPPFLAGS += -Werror=format-security
35
36 CPPFLAGS += -Wconversion
37 CPPFLAGS += -Wint-to-pointer-cast
38 CPPFLAGS += -Wpointer-arith
39 CPPFLAGS += -Wformat
40
41 ######## CXX Link ###############
42 LINK_SHLIB=Y
43
44 ######### compiled options #############
45 LDFLAGS += -Wl,--no-as-needed
46
47 ######### common mk #############
48 include ../../stub.mk