-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
44 lines (28 loc) · 1.22 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Name of the this module
LOCAL_NAME := gps_monitor
# Space-separated list of modules (libraries) your module depends upon.
# These should include the toplevel name, e.g. "libs/gps"
LOCAL_MODULE_DEPENDS := \
# Add includes from other modules we do not wish to link to
LOCAL_API_DEPENDS := libs/gps \
libs/utils \
# include folder
LOCAL_ADD_INCLUDE := include \
include/std_inc \
include/api_inc \
libs/gps/minmea/src
# `yes` if have submodule or left empty or `no`
IS_CONTAIN_SUB_MODULE := no
## ------------------------------------ ##
## Add your custom flags here ##
## ------------------------------------ ##
MYCFLAGS +=
## ------------------------------------- ##
## List all your sources here ##
## ------------------------------------- ##
S_SRC := ${notdir ${wildcard src/*.s}}
C_SRC := ${notdir ${wildcard src/*.c}}
## ------------------------------------------------------------------- ##
## Do Not touch below this line unless you know what you're doing. ##
## ------------------------------------------------------------------- ##
include ${SOFT_WORKDIR}/platform/compilation/cust_rules.mk