2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
|
|
|
# drivers/Makefile
|
2007-02-18 00:21:28 +01:00
|
|
|
#
|
2008-01-08 01:19:24 +01:00
|
|
|
# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
|
2007-02-18 00:21:28 +01:00
|
|
|
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
|
2007-11-02 21:20:34 +01:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
|
|
|
include net/Make.defs
|
2008-09-30 14:24:11 +02:00
|
|
|
ROOTDEPPATH = --dep-path .
|
|
|
|
NETDEPPATH = --dep-path net
|
2007-11-02 21:20:34 +01:00
|
|
|
endif
|
|
|
|
|
2008-09-30 14:24:11 +02:00
|
|
|
ifeq ($(CONFIG_USBDEV),y)
|
|
|
|
include usbdev/Make.defs
|
|
|
|
ROOTDEPPATH = --dep-path .
|
2008-10-07 21:03:44 +02:00
|
|
|
USBDEVDEPPATH = --dep-path usbdev
|
2008-09-30 14:24:11 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ASRCS = $(NET_ASRCS) $(USBDEV_ASRCS)
|
2007-02-28 00:59:20 +01:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
CSRCS =
|
|
|
|
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
2008-09-24 17:42:13 +02:00
|
|
|
CSRCS += dev_null.c dev_zero.c pipe.c fifo.c pipe_common.c \
|
|
|
|
serial.c serialirq.c lowconsole.c can.c
|
2008-06-01 22:08:20 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
|
|
|
CSRCS += ramdisk.c
|
|
|
|
endif
|
2007-11-20 21:32:33 +01:00
|
|
|
endif
|
2008-09-30 14:24:11 +02:00
|
|
|
CSRCS += $(NET_CSRCS) $(USBDEV_CSRCS)
|
2007-02-28 00:59:20 +01:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
BIN = libdrivers$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-09-30 14:24:11 +02:00
|
|
|
VPATH = net:usbdev
|
2007-11-02 21:20:34 +01: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)
|
2008-01-08 14:41:00 +01:00
|
|
|
@( for obj in $(OBJS) ; do \
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ARCHIVE, $@, $${obj}); \
|
2007-02-21 22:55:16 +01:00
|
|
|
done ; )
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2008-09-30 14:24:11 +02:00
|
|
|
@$(MKDEP) $(ROOTDEPPATH) $(NETDEPPATH) $(USBDEVDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2008-01-08 14:41:00 +01:00
|
|
|
@touch $@
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2008-01-10 14:38:13 +01:00
|
|
|
@rm -f $(BIN) *~ .*.swp
|
|
|
|
$(call CLEAN)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
distclean: clean
|
2008-01-10 14:38:13 +01:00
|
|
|
@rm -f Make.dep .depend
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
-include Make.dep
|