summaryrefslogtreecommitdiff
path: root/nuttx/fs/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-05-19 21:30:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-05-19 21:30:57 +0000
commita188db48c1a21f7cd67c2925f29a2369b3a8ab1b (patch)
tree250ba0ad072afebe02de99779c54c70dc4bbdb0a /nuttx/fs/Makefile
parent1d58458830dde2a31b40883e04b4d3d643815592 (diff)
downloadpx4-nuttx-a188db48c1a21f7cd67c2925f29a2369b3a8ab1b.tar.gz
px4-nuttx-a188db48c1a21f7cd67c2925f29a2369b3a8ab1b.tar.bz2
px4-nuttx-a188db48c1a21f7cd67c2925f29a2369b3a8ab1b.zip
Support for open of FAT fs
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@230 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/Makefile')
-rw-r--r--nuttx/fs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index 38465a52e..2691e9ff2 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -48,7 +48,7 @@ CSRCS = fs_open.c fs_close.c fs_read.c fs_write.c fs_ioctl.c fs_dup.c \
fs_registerblockdriver.c fs_unregisterblockdriver.c \
fs_mount.c fs_umount.c fs_inodeaddref.c fs_inoderelease.c
ifeq ($(CONFIG_FS_FAT),y)
-CSRCS += fs_fat32.c
+CSRCS += fs_fat32.c fs_fat32util.c
endif
COBJS = $(CSRCS:.c=$(OBJEXT))