summaryrefslogtreecommitdiff
path: root/nuttx/lib/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-11 13:59:42 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-11 13:59:42 +0000
commit4a528af5569e0385555ac4f5de09677f6bcef754 (patch)
tree7e95e34b58cca8499aba379849d0a64796ad6cb7 /nuttx/lib/Makefile
parentaa23189211765d52c42c4bd73fd7007bed71c3c4 (diff)
downloadpx4-nuttx-4a528af5569e0385555ac4f5de09677f6bcef754.tar.gz
px4-nuttx-4a528af5569e0385555ac4f5de09677f6bcef754.tar.bz2
px4-nuttx-4a528af5569e0385555ac4f5de09677f6bcef754.zip
Added some pattern matching logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1972 42af7a65-404d-4744-a932-0658087f49c3
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 14af7fe33..e00eb5c8c 100644
--- a/nuttx/lib/Makefile
+++ b/nuttx/lib/Makefile
@@ -87,6 +87,8 @@ NET_SRCS = lib_htons.c lib_htonl.c lib_inetntoa.c lib_etherntoa.c
LIBGEN_SRCS = lib_basename.c lib_dirname.c
+REGEX_SRCS = lib_match.c
+
SQ_SRCS = sq_addlast.c sq_addfirst.c sq_addafter.c \
sq_rem.c sq_remlast.c sq_remfirst.c sq_remafter.c
@@ -96,8 +98,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) $(SQ_SRCS) \
- $(DQ_SRCS) $(DBG_SRCS)
+ $(MATH_SRCS) $(UNISTD_SRCS) $(NET_SRCS) $(LIBGEN_SRCS) $(REGEX_SRCS) \
+ $(SQ_SRCS) $(DQ_SRCS) $(DBG_SRCS)
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)