Add gitlab issue/merge request templates
[staging/basesystem.git] / service / system / system_service.mk
1 #############################################################
2 #
3 # Common Makefile for system_service
4 # Copyright (C) 2017-2020 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 := system_service
26  
27 #############################################################
28  
29  
30  
31 #############################################################
32 # You can add several flags and libraries.
33 # When you add -I or -L path, DO NOT USE relative path.
34 # Instead, use $(CURRENT_DIR) variable
35 # that indicates the path this .mk file is stored.
36  
37 COMPONENT_CFLAGS :=
38 COMPONENT_CXXFLAGS :=
39 COMPONENT_LDLIBS :=
40 COMPONENT_LDFLAGS :=
41  
42 ##############################################################
43  
44 include $(CURRENT_DIR)/../../agl-basefiles/share/agl.mk