2007-04-28 21:39:18 +02:00
|
|
|
############################################################################
|
2008-01-08 01:19:24 +01:00
|
|
|
# arch/arm/src/Makefile
|
2007-04-28 21:39:18 +02:00
|
|
|
#
|
2012-01-29 21:07:16 +01:00
|
|
|
# Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
|
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-04-28 21:39:18 +02: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-04-28 21:39:18 +02: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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2012-11-11 15:36:01 +01:00
|
|
|
-include $(TOPDIR)/.config
|
2007-04-28 21:39:18 +02:00
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
-include chip/Make.defs
|
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
|
2011-08-07 14:58:54 +02:00
|
|
|
ifeq ($(CONFIG_ARCH_CORTEXM3),y) # Cortex-M3 is ARMv7-M
|
2012-11-03 00:22:48 +01:00
|
|
|
ARCH_SUBDIR = armv7-m
|
2011-08-05 23:57:49 +02:00
|
|
|
else
|
2011-08-07 14:58:54 +02:00
|
|
|
ifeq ($(CONFIG_ARCH_CORTEXM4),y) # Cortex-M4 is ARMv7E-M
|
2012-11-03 00:22:48 +01:00
|
|
|
ARCH_SUBDIR = armv7-m
|
2009-05-19 19:16:17 +02:00
|
|
|
else
|
2012-11-03 00:22:48 +01:00
|
|
|
ARCH_SUBDIR = arm
|
2009-05-19 19:16:17 +02:00
|
|
|
endif
|
2011-08-05 23:57:49 +02:00
|
|
|
endif
|
2009-05-19 19:16:17 +02:00
|
|
|
|
2009-06-10 04:05:05 +02:00
|
|
|
ifeq ($(WINTOOL),y)
|
2012-11-03 00:22:48 +01:00
|
|
|
NUTTX = "${shell cygpath -w $(TOPDIR)/nuttx}"
|
|
|
|
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
|
|
|
|
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
|
|
|
|
-I "${shell cygpath -w $(ARCH_SRCDIR)/$(ARCH_SUBDIR)}" \
|
|
|
|
-I "${shell cygpath -w $(TOPDIR)/sched}"
|
2009-06-10 04:05:05 +02:00
|
|
|
else
|
2012-11-03 00:22:48 +01:00
|
|
|
NUTTX = $(TOPDIR)/nuttx
|
|
|
|
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common \
|
|
|
|
-I$(ARCH_SRCDIR)/$(ARCH_SUBDIR) -I$(TOPDIR)/sched
|
2009-06-10 04:05:05 +02:00
|
|
|
endif
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
HEAD_OBJ = $(HEAD_ASRC:.S=$(OBJEXT))
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
ASRCS = $(CHIP_ASRCS) $(CMN_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
CSRCS = $(CHIP_CSRCS) $(CMN_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-04 22:04:30 +01:00
|
|
|
LDFLAGS += $(ARCHSCRIPT)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
EXTRA_LIBS ?=
|
|
|
|
EXTRA_LIBPATHS ?=
|
2012-11-11 14:52:31 +01:00
|
|
|
LINKLIBS ?=
|
2012-11-03 00:22:48 +01:00
|
|
|
|
2012-11-11 15:36:01 +01:00
|
|
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
2012-11-12 00:44:31 +01:00
|
|
|
BOARDMAKE = $(dir "$(TOPDIR)\arch\$(CONFIG_ARCH)\src\board\Makefile")
|
2012-11-11 15:36:01 +01:00
|
|
|
LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)\lib"}"
|
2012-11-12 00:44:31 +01:00
|
|
|
ifdef BOARDMAKE
|
|
|
|
LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)\arch\$(CONFIG_ARCH)\src\board"}"
|
2012-11-11 15:36:01 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
else
|
2012-11-12 00:44:31 +01:00
|
|
|
BOARDMAKE = $(dir "$(TOPDIR)/arch/$(CONFIG_ARCH)/src/board/Makefile")
|
2012-11-11 15:36:01 +01:00
|
|
|
|
2009-06-10 04:05:05 +02:00
|
|
|
ifeq ($(WINTOOL),y)
|
2012-11-11 14:52:31 +01:00
|
|
|
LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)/lib"}"
|
2012-11-12 00:44:31 +01:00
|
|
|
ifdef BOARDMAKE
|
|
|
|
LIBPATHS += -L"${shell cygpath -w "$(TOPDIR)/arch/$(CONFIG_ARCH)/src/board"}"
|
2012-11-11 15:36:01 +01:00
|
|
|
endif
|
|
|
|
|
2009-06-10 04:05:05 +02:00
|
|
|
else
|
2012-11-12 00:44:31 +01:00
|
|
|
LIBPATHS += -L"$(TOPDIR)/lib"
|
|
|
|
ifdef BOARDMAKE
|
|
|
|
LIBPATHS += -L"$(TOPDIR)/arch/$(CONFIG_ARCH)/src/board"
|
2009-06-10 04:05:05 +02:00
|
|
|
endif
|
2012-11-11 15:36:01 +01:00
|
|
|
endif
|
|
|
|
endif
|
2012-11-11 14:52:31 +01:00
|
|
|
|
|
|
|
LDLIBS = $(patsubst %.a,%,$(patsubst lib%,-l%,$(LINKLIBS)))
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-12 00:44:31 +01:00
|
|
|
LIBGCC = "${shell "$(CC)" $(ARCHCPUFLAGS) -print-libgcc-file-name}"
|
2012-11-03 00:22:48 +01:00
|
|
|
GCC_LIBDIR := ${shell dirname $(LIBGCC)}
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2012-11-03 00:22:48 +01:00
|
|
|
VPATH = chip:common:$(ARCH_SUBDIR)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
all: $(HEAD_OBJ) libarch$(LIBEXT)
|
|
|
|
|
2012-01-29 21:07:16 +01:00
|
|
|
.PHONY: board/libboard$(LIBEXT)
|
|
|
|
|
2011-07-12 00:52:51 +02:00
|
|
|
$(AOBJS) $(HEAD_OBJ): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
libarch$(LIBEXT): $(OBJS)
|
2012-11-11 16:42:12 +01:00
|
|
|
$(call ARCHIVE, $@, "$(OBJS)")
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
board/libboard$(LIBEXT):
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) $(MAKE) -C board TOPDIR="$(TOPDIR)" libboard$(LIBEXT) EXTRADEFINES=$(EXTRADEFINES)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
2011-07-12 00:52:51 +02:00
|
|
|
nuttx: $(HEAD_OBJ) board/libboard$(LIBEXT)
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) echo "LD: nuttx"
|
2012-11-03 00:22:48 +01:00
|
|
|
$(Q) $(LD) --entry=__start $(LDFLAGS) $(LIBPATHS) $(EXTRA_LIBPATHS) \
|
|
|
|
-o $(NUTTX)$(EXEEXT) $(HEAD_OBJ) $(EXTRA_OBJS) \
|
2012-04-08 15:03:26 +02:00
|
|
|
--start-group $(LDLIBS) -lboard $(EXTRA_LIBS) $(LIBGCC) --end-group
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) $(NM) $(NUTTX)$(EXEEXT) | \
|
2007-04-28 21:39:18 +02:00
|
|
|
grep -v '\(compiled\)\|\(\$(OBJEXT)$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
|
|
|
sort > $(TOPDIR)/System.map
|
|
|
|
|
2011-07-12 00:52:51 +02:00
|
|
|
# This is part of the top-level export target
|
2012-05-21 15:34:09 +02:00
|
|
|
# Note that there may not be a head object if layout is handled
|
|
|
|
# by the linker configuration.
|
2011-07-12 00:52:51 +02:00
|
|
|
|
|
|
|
export_head: board/libboard$(LIBEXT) $(HEAD_OBJ)
|
2012-05-21 15:34:09 +02:00
|
|
|
ifneq ($(HEAD_OBJ),)
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) if [ -d "$(EXPORT_DIR)/startup" ]; then \
|
2012-11-03 00:22:48 +01:00
|
|
|
cp -f $(HEAD_OBJ) "$(EXPORT_DIR)/startup"; \
|
2011-07-12 00:52:51 +02:00
|
|
|
else \
|
2012-11-03 00:22:48 +01:00
|
|
|
echo "$(EXPORT_DIR)/startup does not exist"; \
|
|
|
|
exit 1; \
|
2011-07-12 00:52:51 +02:00
|
|
|
fi
|
2012-05-21 15:34:09 +02:00
|
|
|
endif
|
2011-07-12 00:52:51 +02:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
2007-04-29 23:50:53 +02:00
|
|
|
.depend: Makefile chip/Make.defs $(SRCS)
|
2012-11-12 00:44:31 +01:00
|
|
|
ifdef BOARDMAKE
|
2012-11-11 15:36:01 +01:00
|
|
|
$(Q) $(MAKE) -C board TOPDIR="$(TOPDIR)" depend
|
|
|
|
endif
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) $(MKDEP) --dep-path chip --dep-path common --dep-path $(ARCH_SUBDIR) \
|
2012-11-12 00:44:31 +01:00
|
|
|
"$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) touch $@
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-12 00:44:31 +01:00
|
|
|
ifdef BOARDMAKE
|
2012-11-11 15:36:01 +01:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" clean
|
|
|
|
endif
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) rm -f libarch$(LIBEXT) *~ .*.swp
|
2008-01-10 14:38:13 +01:00
|
|
|
$(call CLEAN)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-12 00:44:31 +01:00
|
|
|
ifdef BOARDMAKE
|
2012-11-11 15:36:01 +01:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" distclean
|
|
|
|
endif
|
2012-11-02 01:22:52 +01:00
|
|
|
$(Q) rm -f Make.dep .depend
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
-include Make.dep
|