summaryrefslogtreecommitdiff
path: root/nuttx/lib/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-01-16 02:12:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-01-16 02:12:48 +0000
commitb7cd2ccf64a21dc25dfa2974182d4ebb3c6272f2 (patch)
tree1efde010f5c460561ed4a577b23c555783bf8960 /nuttx/lib/Makefile
parent3d4c7fcadd7f3d1beabc6f5a1705ab2bb1b97f12 (diff)
downloadpx4-nuttx-b7cd2ccf64a21dc25dfa2974182d4ebb3c6272f2.tar.gz
px4-nuttx-b7cd2ccf64a21dc25dfa2974182d4ebb3c6272f2.tar.bz2
px4-nuttx-b7cd2ccf64a21dc25dfa2974182d4ebb3c6272f2.zip
Add CRC32 to lib/; add tool to make lpc313x bootloader images
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2506 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/lib/Makefile')
-rw-r--r--nuttx/lib/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/lib/Makefile b/nuttx/lib/Makefile
index 221d24266..f59aa3327 100644
--- a/nuttx/lib/Makefile
+++ b/nuttx/lib/Makefile
@@ -92,6 +92,8 @@ LIBGEN_SRCS = lib_basename.c lib_dirname.c
REGEX_SRCS = lib_match.c
+CRC_SRCS = lib_crc32.c
+
SQ_SRCS = sq_addlast.c sq_addfirst.c sq_addafter.c \
sq_rem.c sq_remlast.c sq_remfirst.c sq_remafter.c
@@ -102,7 +104,7 @@ DBG_SRCS = lib_dbg.c lib_dumpbuffer.c
CSRCS = $(MISC_SRCS) $(STRING_SRCS) $(CTYPE_SRCS) $(STDIO_SRCS) $(STDLIB_SRCS) \
$(MATH_SRCS) $(UNISTD_SRCS) $(TIME_SRCS) $(NET_SRCS) $(LIBGEN_SRCS) \
- $(REGEX_SRCS) $(SQ_SRCS) $(DQ_SRCS) $(DBG_SRCS)
+ $(REGEX_SRCS) $(CRC_SRCS) $(SQ_SRCS) $(DQ_SRCS) $(DBG_SRCS)
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)