summaryrefslogtreecommitdiff
path: root/nuttx/lib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/lib/Makefile')
-rw-r--r--nuttx/lib/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/lib/Makefile b/nuttx/lib/Makefile
index e00eb5c8c..b2792cdf3 100644
--- a/nuttx/lib/Makefile
+++ b/nuttx/lib/Makefile
@@ -83,6 +83,8 @@ UNISTD_SRCS += lib_chdir.c lib_getcwd.c
endif
endif
+TIME_SRCS = lib_mktime.c lib_gmtimer.c lib_timeutils.c
+
NET_SRCS = lib_htons.c lib_htonl.c lib_inetntoa.c lib_etherntoa.c
LIBGEN_SRCS = lib_basename.c lib_dirname.c
@@ -98,8 +100,8 @@ DQ_SRCS = dq_addlast.c dq_addfirst.c dq_addafter.c dq_addbefore.c \
DBG_SRCS = lib_dbg.c lib_dumpbuffer.c
CSRCS = $(MISC_SRCS) $(STRING_SRCS) $(CTYPE_SRCS) $(STDIO_SRCS) $(STDLIB_SRCS) \
- $(MATH_SRCS) $(UNISTD_SRCS) $(NET_SRCS) $(LIBGEN_SRCS) $(REGEX_SRCS) \
- $(SQ_SRCS) $(DQ_SRCS) $(DBG_SRCS)
+ $(MATH_SRCS) $(UNISTD_SRCS) $(TIME_SRCS) $(NET_SRCS) $(LIBGEN_SRCS) \
+ $(REGEX_SRCS) $(SQ_SRCS) $(DQ_SRCS) $(DBG_SRCS)
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)