Add gitlab issue/merge request templates
[staging/basesystem.git] / service / vehicle / vehicle_service.mk
1 #############################################################
2 #
3 # Common Makefile for vehicle_service
4 # Copyright (C) 2017-2019 TOYOTA MOTOR CORPORATION
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 #############################################################
19
20 CURRENT_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
21  
22 #############################################################
23 # COMPONENT_NAME must not be blank and be named snake_case
24  
25 COMPONENT_NAME := vehicle_service
26  
27 #############################################################
28  
29 #############################################################
30 # You can add several flags and libraries.
31 # When you add -I or -L path, DO NOT USE relative path.
32 # Instead, use $(CURRENT_DIR) variable
33 # that indicates the path this .mk file is stored.
34  
35 COMPONENT_CFLAGS :=
36 COMPONENT_CXXFLAGS :=
37 COMPONENT_LDLIBS :=
38 COMPONENT_LDFLAGS :=
39  
40 ##############################################################
41  
42 include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk