summaryrefslogtreecommitdiff
path: root/nuttx/fs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/Makefile')
-rw-r--r--nuttx/fs/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index e03f5c23d..0f01c0a63 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -1,7 +1,7 @@
############################################################################
# fs/Makefile
#
-# Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -79,6 +79,14 @@ ifneq ($(CONFIG_NFILE_STREAMS),0)
CSRCS += fs_fdopen.c
endif
+# System logging to a character device (or file)
+
+ifeq ($(CONFIG_SYSLOG),y)
+ifeq ($(CONFIG_SYSLOG_CHAR),y)
+CSRCS += fs_syslog.c
+endif
+endif
+
# Additional files required is mount-able file systems are supported
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)