2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
|
|
|
# drivers/Makefile
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
2016-05-10 23:44:06 +02:00
|
|
|
# Copyright (C) 2007-2014, 2016 Gregory Nutt. All rights reserved.
|
2011-12-21 16:50:06 +01: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.
|
|
|
|
#
|
2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-05-16 17:09:39 +02:00
|
|
|
# Include support for various drivers. Each Make.defs file will add its
|
|
|
|
# files to the source file list, add its DEPPATH info, and will add
|
|
|
|
# the appropriate paths to the VPATH variable
|
2009-10-18 15:52:21 +02:00
|
|
|
|
2020-05-20 19:11:16 +02:00
|
|
|
include analog/Make.defs
|
|
|
|
include audio/Make.defs
|
|
|
|
include bch/Make.defs
|
|
|
|
include can/Make.defs
|
|
|
|
include crypto/Make.defs
|
|
|
|
include i2c/Make.defs
|
|
|
|
include i2s/Make.defs
|
|
|
|
include input/Make.defs
|
|
|
|
include ioexpander/Make.defs
|
|
|
|
include lcd/Make.defs
|
|
|
|
include leds/Make.defs
|
|
|
|
include loop/Make.defs
|
|
|
|
include mmcsd/Make.defs
|
|
|
|
include modem/Make.defs
|
|
|
|
include mtd/Make.defs
|
|
|
|
include eeprom/Make.defs
|
|
|
|
include net/Make.defs
|
2020-08-05 19:43:13 +02:00
|
|
|
include note/Make.defs
|
2020-05-20 19:11:16 +02:00
|
|
|
include pipes/Make.defs
|
|
|
|
include power/Make.defs
|
|
|
|
include rptun/Make.defs
|
|
|
|
include sensors/Make.defs
|
|
|
|
include serial/Make.defs
|
|
|
|
include spi/Make.defs
|
|
|
|
include syslog/Make.defs
|
|
|
|
include timers/Make.defs
|
|
|
|
include usbdev/Make.defs
|
|
|
|
include usbhost/Make.defs
|
|
|
|
include usbmisc/Make.defs
|
|
|
|
include usbmonitor/Make.defs
|
|
|
|
include video/Make.defs
|
|
|
|
include wireless/Make.defs
|
|
|
|
include contactless/Make.defs
|
|
|
|
include 1wire/Make.defs
|
|
|
|
include rf/Make.defs
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-08-21 15:39:29 +02:00
|
|
|
ifeq ($(CONFIG_SPECIFIC_DRIVERS),y)
|
2020-05-20 19:11:16 +02:00
|
|
|
include platform/Make.defs
|
2019-08-21 15:39:29 +02:00
|
|
|
endif
|
|
|
|
|
2019-11-04 02:45:05 +01:00
|
|
|
ifeq ($(CONFIG_DEV_SIMPLE_ADDRENV),y)
|
|
|
|
CSRCS += addrenv.c
|
|
|
|
endif
|
|
|
|
|
2019-02-11 19:09:26 +01:00
|
|
|
CSRCS += dev_null.c dev_zero.c
|
2011-12-22 16:59:50 +01:00
|
|
|
|
2008-06-01 22:08:20 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2019-10-26 19:43:34 +02:00
|
|
|
CSRCS += ramdisk.c
|
|
|
|
ifeq ($(CONFIG_DRVR_MKRD),y)
|
|
|
|
CSRCS += mkrd.c
|
|
|
|
endif
|
2014-09-25 19:02:30 +02:00
|
|
|
ifeq ($(CONFIG_DRVR_WRITEBUFFER),y)
|
2014-07-11 19:20:11 +02:00
|
|
|
CSRCS += rwbuffer.c
|
|
|
|
else
|
2014-09-25 19:02:30 +02:00
|
|
|
ifeq ($(CONFIG_DRVR_READAHEAD),y)
|
2014-07-11 19:20:11 +02:00
|
|
|
CSRCS += rwbuffer.c
|
|
|
|
endif
|
|
|
|
endif
|
2008-06-01 22:08:20 +02:00
|
|
|
endif
|
2011-05-16 17:09:39 +02:00
|
|
|
|
2012-11-22 22:21:48 +01:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-11-22 22:21:48 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-11-22 22:21:48 +01:00
|
|
|
BIN = libdrivers$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2012-11-22 22:21:48 +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
|
|
|
|
2012-11-22 22:21:48 +01:00
|
|
|
$(BIN): $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 03:44:03 +01:00
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
$(Q) touch $@
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-10 14:38:13 +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)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
-include Make.dep
|