Init basesystem source codes.
[staging/basesystem.git] / stub / diag_code / library / 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 ######### installed program #############
17
18 ######### installed library(*.a) #############
19
20 ######### installed shared library(*.so) #############
21 INST_SHLIBS = libDiagCodeAPI
22
23 ######### install headers(*.h)  #############
24 VPATH += ./include/$(COMPONENT_NAME)
25 INST_HEADERS += DiagCodeAPI.h DIAGCODE.h ss_diag.h
26
27 ######### compiled sources  #############
28 libDiagCodeAPI_SRCS += DiagCodeAPI.cpp
29
30 ######### add source path #############
31 VPATH += ./src
32
33 ######### add include path #############
34 CPPFLAGS += -I./include/stub
35 CPPFLAGS += -I./../library_dummy_dccc/include/
36
37 ######### add compile option #############
38 LDFLAGS += -Wl,--no-as-needed
39 CPPFLAGS += -Werror=implicit-function-declaration
40 CPPFLAGS += -Werror=format-security
41
42 CPPFLAGS += -Wconversion
43 CPPFLAGS += -Wint-to-pointer-cast
44 CPPFLAGS += -Wpointer-arith
45 CPPFLAGS += -Wformat
46 ######### dynamic linked library path #############
47
48 ######### add library path #############
49
50
51 include ../../stub.mk