2008-01-08 08:19:24 +08:00
|
|
|
############################################################################
|
|
|
|
# drivers/Makefile
|
2007-02-18 07:21:28 +08:00
|
|
|
#
|
2016-05-11 05:44:06 +08:00
|
|
|
# Copyright (C) 2007-2014, 2016 Gregory Nutt. All rights reserved.
|
2011-12-21 23:50:06 +08:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 07:21:28 +08: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 08:19:24 +08:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 07:21:28 +08: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 08:19:24 +08:00
|
|
|
############################################################################
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-05-19 03:42:11 +08:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2011-05-16 23:09:39 +08: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 21:52:21 +08:00
|
|
|
|
2020-05-21 01:11:16 +08: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
|
|
|
|
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 07:21:28 +08:00
|
|
|
|
2019-08-21 21:39:29 +08:00
|
|
|
ifeq ($(CONFIG_SPECIFIC_DRIVERS),y)
|
2020-05-21 01:11:16 +08:00
|
|
|
include platform/Make.defs
|
2019-08-21 21:39:29 +08:00
|
|
|
endif
|
|
|
|
|
2019-11-04 09:45:05 +08:00
|
|
|
ifeq ($(CONFIG_DEV_SIMPLE_ADDRENV),y)
|
|
|
|
CSRCS += addrenv.c
|
|
|
|
endif
|
|
|
|
|
2019-02-12 02:09:26 +08:00
|
|
|
CSRCS += dev_null.c dev_zero.c
|
2011-12-22 23:59:50 +08:00
|
|
|
|
2008-06-02 04:08:20 +08:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2019-10-27 01:43:34 +08:00
|
|
|
CSRCS += ramdisk.c
|
|
|
|
ifeq ($(CONFIG_DRVR_MKRD),y)
|
|
|
|
CSRCS += mkrd.c
|
|
|
|
endif
|
2014-09-26 01:02:30 +08:00
|
|
|
ifeq ($(CONFIG_DRVR_WRITEBUFFER),y)
|
2014-07-12 01:20:11 +08:00
|
|
|
CSRCS += rwbuffer.c
|
|
|
|
else
|
2014-09-26 01:02:30 +08:00
|
|
|
ifeq ($(CONFIG_DRVR_READAHEAD),y)
|
2014-07-12 01:20:11 +08:00
|
|
|
CSRCS += rwbuffer.c
|
|
|
|
endif
|
|
|
|
endif
|
2008-06-02 04:08:20 +08:00
|
|
|
endif
|
2011-05-16 23:09:39 +08:00
|
|
|
|
2012-11-23 05:21:48 +08:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-11-23 05:21:48 +08:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-11-23 05:21:48 +08:00
|
|
|
BIN = libdrivers$(LIBEXT)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-11-23 05:21:48 +08:00
|
|
|
all: $(BIN)
|
2016-05-11 05:44:06 +08:00
|
|
|
.PHONY: depend clean distclean
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2007-02-28 07:59:20 +08:00
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-09 01:06:21 +08:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2007-02-28 21:42:19 +08:00
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-09 01:06:21 +08:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-11-23 05:21:48 +08:00
|
|
|
$(BIN): $(OBJS)
|
2012-11-16 01:43:29 +08:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-03-23 10:44:03 +08:00
|
|
|
.depend: Makefile $(SRCS)
|
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
$(Q) touch $@
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-03-23 10:44:03 +08:00
|
|
|
depend: .depend
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-01-10 21:38:13 +08:00
|
|
|
$(call CLEAN)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 10:44:03 +08:00
|
|
|
$(call DELFILE, .depend)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
-include Make.dep
|