Init basesystem source codes.
[staging/basesystem.git] / video_in_hal / stub / vehicle / client / 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 shared library(*.so) #############
18 INST_SHLIBS = libVehicle_API
19
20
21 ######### installed static library(*.a) #############
22 INST_LIBS = libVehicle_API
23
24
25 ######### install headers(*.h)  #############
26 VPATH += ./include/$(COMPONENT_NAME)
27 INST_HEADERS = Vehicle_API.h vehicle_notifications.h Vehicle_Sensor_Common_API.h
28
29 ######### compiled sources  #############
30 libVehicle_API_SRCS = Vehicle_API.cpp
31
32 ######### add source path #############
33 VPATH += ./src
34
35 ######### add include path #############
36 CPPFLAGS += -I./include
37 CPPFLAGS += -I./include/stub
38
39 ######### add compile option #############
40 CPPFLAGS += -Werror=implicit-function-declaration
41 CPPFLAGS += -Werror=format-security
42
43 CPPFLAGS += -Wconversion
44 CPPFLAGS += -Wint-to-pointer-cast
45 CPPFLAGS += -Wpointer-arith
46 CPPFLAGS += -Wformat
47
48 CPPFLAGS += -DIMPL_AGL_APPLICATION_CALLBACKS_PRE_BACKGROUND
49
50 #### FOR DEBUG OPTIONS
51
52 ######### add library path #############
53 LDFLAGS += -Wl,--gc-sections
54 LDFLAGS += -Wl,--no-as-needed
55 LDFLAGS += -Wl,--no-undefined
56
57 ######### linked library (dynamic) #############
58 LDLIBS += -Wl,-Bdynamic -lNS_FrameworkUnified
59
60 include ../../stub.mk