2007-11-20 21:32:33 +01:00
|
|
|
############################################################################
|
|
|
|
# fs/Makefile
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
2013-01-16 16:41:27 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2013 Gregory Nutt. All rights reserved.
|
2012-07-14 23:05:40 +02:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
2008-01-08 01:19:24 +01:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2007-11-20 21:32:33 +01:00
|
|
|
############################################################################
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
ASRCS =
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS =
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# If there are no file descriptors configured, then a small part of the
|
|
|
|
# logic in this directory may still apply to socket descriptors
|
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
ifeq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
|
|
|
ifneq ($(CONFIG_NSOCKET_DESCRIPTORS),0)
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# Socket descriptor support
|
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_close.c fs_read.c fs_write.c fs_ioctl.c fs_poll.c fs_select.c
|
2007-11-20 21:32:33 +01:00
|
|
|
endif
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# Support for network access using streams
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_NFILE_STREAMS),0)
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_fdopen.c
|
2011-06-02 17:05:48 +02:00
|
|
|
endif
|
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
else
|
2011-06-02 17:05:48 +02:00
|
|
|
|
|
|
|
# Common file/socket descriptor support
|
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_close.c fs_closedir.c fs_dup.c fs_dup2.c fs_fcntl.c \
|
|
|
|
fs_filedup.c fs_filedup2.c fs_ioctl.c fs_lseek.c fs_open.c \
|
|
|
|
fs_opendir.c fs_poll.c fs_read.c fs_readdir.c fs_rewinddir.c \
|
|
|
|
fs_seekdir.c fs_stat.c fs_statfs.c fs_select.c fs_write.c
|
|
|
|
CSRCS += fs_files.c fs_foreachinode.c fs_inode.c fs_inodeaddref.c \
|
|
|
|
fs_inodefind.c fs_inoderelease.c fs_inoderemove.c \
|
|
|
|
fs_inodereserve.c
|
|
|
|
CSRCS += fs_registerdriver.c fs_unregisterdriver.c
|
|
|
|
CSRCS += fs_registerblockdriver.c fs_unregisterblockdriver.c \
|
2008-10-23 00:02:44 +02:00
|
|
|
fs_findblockdriver.c fs_openblockdriver.c fs_closeblockdriver.c
|
2011-04-05 03:46:55 +02:00
|
|
|
|
2013-01-16 16:41:27 +01:00
|
|
|
DEPPATH =
|
|
|
|
VPATH = .
|
|
|
|
|
2011-05-07 22:08:46 +02:00
|
|
|
include mmap/Make.defs
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Stream support
|
|
|
|
|
2011-04-05 03:46:55 +02:00
|
|
|
ifneq ($(CONFIG_NFILE_STREAMS),0)
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_fdopen.c
|
2011-04-05 03:46:55 +02:00
|
|
|
endif
|
|
|
|
|
2013-09-28 22:47:49 +02:00
|
|
|
# Support for sendfile()
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_SENDFILE),y)
|
|
|
|
CSRCS += fs_sendfile.c
|
|
|
|
endif
|
|
|
|
|
2012-08-02 19:09:25 +02:00
|
|
|
# System logging to a character device (or file)
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SYSLOG),y)
|
|
|
|
ifeq ($(CONFIG_SYSLOG_CHAR),y)
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_syslog.c
|
2012-08-02 19:09:25 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Additional files required is mount-able file systems are supported
|
|
|
|
|
2008-10-23 00:02:44 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2013-01-16 16:41:27 +01:00
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
CSRCS += fs_fsync.c fs_mkdir.c fs_mount.c fs_rename.c fs_rmdir.c \
|
|
|
|
fs_umount.c fs_unlink.c
|
|
|
|
CSRCS += fs_foreachmountpoint.c
|
2013-01-16 16:41:27 +01:00
|
|
|
|
2008-08-02 17:02:10 +02:00
|
|
|
include fat/Make.defs
|
2008-09-10 21:29:24 +02:00
|
|
|
include romfs/Make.defs
|
2011-04-28 21:26:46 +02:00
|
|
|
include nxffs/Make.defs
|
2012-03-02 03:11:31 +01:00
|
|
|
include nfs/Make.defs
|
2013-05-01 04:13:30 +02:00
|
|
|
include smartfs/Make.defs
|
2013-01-16 16:41:27 +01:00
|
|
|
include binfs/Make.defs
|
|
|
|
|
2007-05-26 21:22:34 +02:00
|
|
|
endif
|
2007-11-20 21:32:33 +01:00
|
|
|
endif
|
2007-06-09 21:11:00 +02:00
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-08-03 21:11:11 +02:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
BIN = libfs$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-01-16 16:41:27 +01:00
|
|
|
SUBDIRS = mmap fat romfs nxffs nfs binfs
|
2008-08-02 17:02:10 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
all: $(BIN)
|
|
|
|
|
2007-02-28 00:59:20 +01:00
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-28 14:42:19 +01:00
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2013-01-16 16:41:27 +01:00
|
|
|
$(Q) $(MKDEP) --dep-path . $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2012-11-11 19:36:28 +01:00
|
|
|
$(Q) touch $@
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-10 19:23:08 +01:00
|
|
|
$(call CLEAN)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, .depend)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
-include Make.dep
|