Add gitlab issue/merge request templates
[staging/basesystem.git] / service / system / resource_manager / 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 ######### add source path #############
18 VPATH += ./
19 VPATH += ./src
20 VPATH += ./include
21 VPATH += ../server/include
22 VPATH += ../server/include/system_service
23
24 ######### install headers(*.h)  #############
25 INST_HEADERS += resm.h
26 INST_HEADERS += resm_type.h
27 INST_HEADERS += resource_manager.h
28
29 ######### installed program #############
30
31
32 ######### installed library(*.a) #############
33 INST_LIBS = 
34
35 ######### installed shared library(*.so) #############
36 INST_SHLIBS = libresm
37 RPC_API := RESMGR
38
39 ######### compiled sources  #############
40 libresm_SRCS += resmgr_api_stub.c
41 libresm_SRCS += resmgr_api_lib.c
42
43 ######### add include path #############
44 CPPFLAGS += -I./
45 CPPFLAGS += -I./include
46 CPPFLAGS += -I../server/include
47
48 ######## add compile option ########
49
50 ######### add library path #############
51 LDFLAGS += -Wl,--no-as-needed
52
53 ######### linked library (dynamic) #############
54 LDLIBS += -lrpc
55 LDLIBS += -Wl,-Bdynamic -lbs_ev
56 LDLIBS += -Wl,-Bdynamic -lNS_FrameworkUnified
57
58 include ../../system_service.mk