aboutsummaryrefslogtreecommitdiff
path: root/stmhal/Makefile
diff options
context:
space:
mode:
authorJosef Gajdusek2015-05-03 20:26:08 +0200
committerDamien George2015-05-04 11:48:40 +0100
commit04ee5983feadc6945e324eb54cd9e7f8c1d6aa8c (patch)
treeaafdf5cd87c2fc5004644ed46749d0a9f7134183 /stmhal/Makefile
parent47b9809d231c4359c56316130a76f13de2b907f7 (diff)
lib: Move some common mod_network_* functions to lib/netutils.
Diffstat (limited to 'stmhal/Makefile')
-rw-r--r--stmhal/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/stmhal/Makefile b/stmhal/Makefile
index 78553f188..60f05669b 100644
--- a/stmhal/Makefile
+++ b/stmhal/Makefile
@@ -41,6 +41,7 @@ INC += -I$(HAL_DIR)/inc
INC += -I$(USBDEV_DIR)/core/inc -I$(USBDEV_DIR)/class/inc
#INC += -I$(USBHOST_DIR)
INC += -I../lib/mp-readline
+INC += -I../lib/netutils
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion
CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -ansi -std=gnu99 -nostdlib $(CFLAGS_MOD) $(CFLAGS_CORTEX_M4) $(COPT)
@@ -92,6 +93,7 @@ SRC_LIB = $(addprefix lib/,\
fatfs/ff.c \
fatfs/option/ccsbcs.c \
mp-readline/readline.c \
+ netutils/netutils.c \
)
SRC_C = \