2007-11-20 21:32:33 +01:00
|
|
|
############################################################################
|
|
|
|
# fs/Makefile
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
2017-02-03 00:11:08 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2014, 2016-2017 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
|
|
|
|
|
2014-02-19 17:01:26 +01:00
|
|
|
ASRCS =
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-10-06 16:11:37 +02:00
|
|
|
CSRCS = fs_initialize.c
|
2011-06-02 17:05:48 +02:00
|
|
|
|
2014-09-28 18:53:40 +02:00
|
|
|
DEPPATH = --dep-path .
|
2013-01-16 16:41:27 +01:00
|
|
|
VPATH = .
|
|
|
|
|
2014-09-28 18:53:40 +02:00
|
|
|
include inode/Make.defs
|
2014-09-28 19:46:11 +02:00
|
|
|
include vfs/Make.defs
|
2014-09-28 19:06:21 +02:00
|
|
|
include driver/Make.defs
|
2014-09-28 19:28:17 +02:00
|
|
|
include dirent/Make.defs
|
2014-10-05 23:33:31 +02:00
|
|
|
include aio/Make.defs
|
2011-05-07 22:08:46 +02:00
|
|
|
include mmap/Make.defs
|
|
|
|
|
2014-09-28 22:35:17 +02:00
|
|
|
# OS resources
|
|
|
|
|
|
|
|
include semaphore/Make.defs
|
2014-09-29 15:00:11 +02:00
|
|
|
include mqueue/Make.defs
|
2014-09-30 00:46:31 +02:00
|
|
|
include shm/Make.defs
|
2014-09-28 22:35:17 +02:00
|
|
|
|
2011-06-02 17:05:48 +02:00
|
|
|
# Additional files required is mount-able file systems are supported
|
|
|
|
|
2014-09-28 19:46:11 +02:00
|
|
|
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
2008-10-23 00:02:44 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2013-01-16 16:41:27 +01:00
|
|
|
|
2014-09-28 19:28:17 +02:00
|
|
|
include mount/Make.defs
|
2008-08-02 17:02:10 +02:00
|
|
|
include fat/Make.defs
|
2008-09-10 21:29:24 +02:00
|
|
|
include romfs/Make.defs
|
2015-10-09 19:02:59 +02:00
|
|
|
include tmpfs/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
|
2013-11-13 22:59:14 +01:00
|
|
|
include procfs/Make.defs
|
2015-06-05 21:18:06 +02:00
|
|
|
include unionfs/Make.defs
|
2015-11-25 15:26:26 +01:00
|
|
|
include hostfs/Make.defs
|
2013-01-16 16:41:27 +01:00
|
|
|
|
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
|
|
|
|
2014-02-19 17:01:26 +01:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-02-19 17:01:26 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-02-19 17:01:26 +01:00
|
|
|
BIN = libfs$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-02-19 17:01:26 +01:00
|
|
|
all: $(BIN)
|
2016-05-10 23:44:06 +02:00
|
|
|
.PHONY: depend clean distclean
|
2007-02-18 00:21:28 +01:00
|
|
|
|
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)
|
2014-09-28 18:53:40 +02:00
|
|
|
$(Q) $(MKDEP) $(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
|