forked from parse-community/parse-embedded-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.inc
46 lines (34 loc) · 939 Bytes
/
makefile.inc
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
45
46
#**********************************************************************************
#
# Common rules for building the CC3200 libraries and samples.
#
#**********************************************************************************
#
# The CC3200 directory.
#
CC3200_SDK_ROOT:=${HOME}/devtools/cc3200-sdk
#
# The Parse Embedded C SDK for CC3200 directory.
#
PARSE_CC3200_SDK_ROOT:=${PARSE_SDK_ROOT}/cc3200
#
# Include the common make definitions.
#
include ${CC3200_SDK_ROOT}/tools/gcc_scripts/makedefs
#
# Additional Compiler Flags
#
CFLAGS+=-DPART_CC3200 -DSL_FULL -DSL_PLATFORM_MULTI_THREADED -DUSE_FREERTOS
CFLAGS+=-Wall
#
# Where to find header files that do not live in the source directory.
#
IPATH+=$(PARSE_CC3200_SDK_ROOT)/src
IPATH+=${CC3200_SDK_ROOT}/simplelink/include
IPATH+=${CC3200_SDK_ROOT}/driverlib
IPATH+=${CC3200_SDK_ROOT}/oslib
IPATH+=${CC3200_SDK_ROOT}/inc
#
# Turn verbose output on or off
#
VERBOSE=1