Skip to content
This repository was archived by the owner on Sep 13, 2020. It is now read-only.

Commit 4fe90de

Browse files
author
Franci Penov
committed
Fixing the OS X build
1 parent 6c0a512 commit 4fe90de

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

cc3200/makefile.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ CFLAGS+=-Wall
3333
#
3434
# Where to find header files that do not live in the source directory.
3535
#
36+
IPATH+=$(PARSE_CC3200_SDK_ROOT)/src
3637
IPATH+=${CC3200_SDK_ROOT}/simplelink/include
3738
IPATH+=${CC3200_SDK_ROOT}/driverlib
3839
IPATH+=${CC3200_SDK_ROOT}/oslib

cc3200/src/makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,21 @@ ${BINDIR}:
4444
# Rules for building the Simplelink library with os support.
4545
#
4646
${TARGET}: \
47+
${OBJDIR}/certificate_file.o \
48+
${OBJDIR}/client_state.o \
49+
${OBJDIR}/debug.o \
50+
${OBJDIR}/socket.o \
51+
${OBJDIR}/utils.o \
52+
\
53+
${OBJDIR}/certificate.o \
4754
${OBJDIR}/http.o \
4855
${OBJDIR}/installation.o \
4956
${OBJDIR}/parse_impl.o \
5057
${OBJDIR}/push.o \
5158
${OBJDIR}/request.o \
5259
${OBJDIR}/session.o \
53-
${OBJDIR}/simplejson.o \
5460
\
55-
${OBJDIR}/cc3200_certificate.o \
56-
${OBJDIR}/cc3200_client_state.o \
57-
${OBJDIR}/cc3200_debug.o \
58-
${OBJDIR}/cc3200_socket.o \
59-
${OBJDIR}/cc3200_utils.o \
61+
${OBJDIR}/simplejson.o \
6062

6163

6264
#

makefile.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ PARSE_SDK_ROOT:=$(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
2121
# Where to find header files that do not live in the source directory.
2222
#
2323
IPATH+=$(PARSE_SDK_ROOT)/include
24+
IPATH+=$(PARSE_SDK_ROOT)/rtos
2425
IPATH+=$(PARSE_SDK_ROOT)/common
2526

2627

2728
#
2829
# Where to find source files that do not live in this directory.
2930
#
31+
VPATH+=$(PARSE_SDK_ROOT)/rtos
3032
VPATH+=$(PARSE_SDK_ROOT)/common

0 commit comments

Comments
 (0)