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
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
2012-11-30 06:27:22 +08:00
|
|
|
DELIM ?= $(strip /)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-06-25 04:57:34 +08:00
|
|
|
ifeq ($(WINTOOL),y)
|
2011-04-20 02:51:02 +08:00
|
|
|
INCDIROPT = -w
|
2009-06-25 04:57:34 +08:00
|
|
|
endif
|
|
|
|
|
2011-05-16 23:09:39 +08:00
|
|
|
DEPPATH = --dep-path .
|
|
|
|
ASRCS =
|
|
|
|
CSRCS =
|
|
|
|
VPATH = .
|
2011-04-20 21:32:49 +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
|
|
|
|
2012-11-26 04:58:39 +08:00
|
|
|
include analog$(DELIM)Make.defs
|
2013-05-20 05:12:28 +08:00
|
|
|
include audio$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include bch$(DELIM)Make.defs
|
2017-05-12 22:23:16 +08:00
|
|
|
include can$(DELIM)Make.defs
|
2018-08-27 21:14:01 +08:00
|
|
|
include crypto$(DELIM)Make.defs
|
2016-01-26 23:58:18 +08:00
|
|
|
include i2c$(DELIM)Make.defs
|
2018-08-27 21:26:22 +08:00
|
|
|
include i2s$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include input$(DELIM)Make.defs
|
2015-12-15 22:40:34 +08:00
|
|
|
include ioexpander$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include lcd$(DELIM)Make.defs
|
2015-12-15 22:05:10 +08:00
|
|
|
include leds$(DELIM)Make.defs
|
2015-11-26 06:23:19 +08:00
|
|
|
include loop$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include mmcsd$(DELIM)Make.defs
|
2016-01-30 21:37:43 +08:00
|
|
|
include modem$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include mtd$(DELIM)Make.defs
|
2014-11-28 01:08:27 +08:00
|
|
|
include eeprom$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include net$(DELIM)Make.defs
|
|
|
|
include pipes$(DELIM)Make.defs
|
|
|
|
include power$(DELIM)Make.defs
|
2018-08-27 21:17:34 +08:00
|
|
|
include pwm$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include sensors$(DELIM)Make.defs
|
|
|
|
include serial$(DELIM)Make.defs
|
2013-07-02 02:23:26 +08:00
|
|
|
include spi$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include syslog$(DELIM)Make.defs
|
2015-02-14 00:30:06 +08:00
|
|
|
include timers$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include usbdev$(DELIM)Make.defs
|
|
|
|
include usbhost$(DELIM)Make.defs
|
2017-03-31 20:35:36 +08:00
|
|
|
include usbmisc$(DELIM)Make.defs
|
2016-07-01 03:09:22 +08:00
|
|
|
include usbmonitor$(DELIM)Make.defs
|
2013-12-10 00:51:22 +08:00
|
|
|
include video$(DELIM)Make.defs
|
2012-11-26 04:58:39 +08:00
|
|
|
include wireless$(DELIM)Make.defs
|
2016-08-31 19:41:49 +08:00
|
|
|
include contactless$(DELIM)Make.defs
|
2018-04-05 00:57:36 +08:00
|
|
|
include 1wire$(DELIM)Make.defs
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2007-11-21 04:32:33 +08:00
|
|
|
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
2014-12-08 21:14:31 +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)
|
2015-11-26 06:23:19 +08:00
|
|
|
CSRCS += ramdisk.c
|
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
|
2016-07-18 21:03:47 +08:00
|
|
|
endif # CONFIG_NFILE_DESCRIPTORS != 0
|
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
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2012-11-12 07:44:31 +08:00
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2012-11-12 02:36:28 +08:00
|
|
|
$(Q) touch $@
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
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)
|
|
|
|
$(call DELFILE, .depend)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
-include Make.dep
|