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
|
|
|
#
|
2008-01-08 01:19:24 +01:00
|
|
|
# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
|
2007-04-28 21:39:18 +02: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-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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
-include chip/Make.defs
|
|
|
|
|
|
|
|
ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
|
|
|
|
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(TOPDIR)/sched
|
|
|
|
|
|
|
|
HEAD_AOBJ = $(HEAD_ASRC:.S=$(OBJEXT))
|
|
|
|
|
|
|
|
ASRCS = $(CHIP_ASRCS) $(CMN_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
|
|
|
CSRCS = $(CHIP_CSRCS) $(CMN_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
|
|
|
LDFLAGS = $(ARCHSCRIPT)
|
|
|
|
EXTRA_LIBS =
|
|
|
|
|
|
|
|
LINKLIBS =
|
|
|
|
LDPATHES = $(addprefix -L$(TOPDIR)/,$(dir $(LINKLIBS)))
|
|
|
|
LDLIBS = $(patsubst lib%,-l%,$(basename $(notdir $(LINKLIBS))))
|
|
|
|
|
|
|
|
BOARDDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src/board
|
|
|
|
|
|
|
|
LIBGCC = ${shell $(CC) -print-libgcc-file-name}
|
|
|
|
|
|
|
|
VPATH = chip:common
|
|
|
|
|
|
|
|
all: $(HEAD_OBJ) libarch$(LIBEXT)
|
|
|
|
|
|
|
|
$(AOBJS) $(HEAD_AOBJ): %$(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)
|
|
|
|
@( for obj in $(OBJS) ; do \
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ARCHIVE, $@, $${obj}); \
|
2007-04-28 21:39:18 +02:00
|
|
|
done ; )
|
|
|
|
|
|
|
|
board/libboard$(LIBEXT):
|
2009-05-15 00:08:32 +02:00
|
|
|
@$(MAKE) -C board TOPDIR="$(TOPDIR)" libboard$(LIBEXT)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
nuttx: $(HEAD_AOBJ) board/libboard$(LIBEXT)
|
2008-01-08 18:06:21 +01:00
|
|
|
@echo "LD: nuttx"
|
|
|
|
@$(LD) --entry=__start $(LDFLAGS) $(LDPATHES) -L$(BOARDDIR) -o $(TOPDIR)/$@ $(HEAD_AOBJ) \
|
2008-09-17 22:27:29 +02:00
|
|
|
--start-group $(LDLIBS) -lboard --end-group $(EXTRA_LIBS) $(LIBGCC)
|
2009-04-09 01:24:59 +02:00
|
|
|
ifeq ($(CONFIG_BOOT_RUNFROMFLASH),y)
|
2008-09-17 22:27:29 +02:00
|
|
|
@export flashloc=`$(OBJDUMP) --all-headers $(TOPDIR)/$@ | grep _eronly | cut -d' ' -f1`; \
|
2009-04-30 01:17:39 +02:00
|
|
|
$(OBJCOPY) $(OBJCOPYARGS) --adjust-section-vma=.data=0x$$flashloc $(TOPDIR)/$@ $(TOPDIR)/$@.flashimage
|
2008-09-17 22:27:29 +02:00
|
|
|
@mv $(TOPDIR)/$@.flashimage $(TOPDIR)/$@
|
|
|
|
endif
|
2007-04-28 21:39:18 +02:00
|
|
|
@$(NM) $(TOPDIR)/$@ | \
|
|
|
|
grep -v '\(compiled\)\|\(\$(OBJEXT)$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
|
|
|
sort > $(TOPDIR)/System.map
|
|
|
|
@export vflashstart=`$(OBJDUMP) --all-headers $(TOPDIR)/$@ | grep _vflashstart | cut -d' ' -f1`; \
|
|
|
|
if [ ! -z "$$vflashstart" ]; then \
|
2009-04-30 01:17:39 +02:00
|
|
|
$(OBJCOPY) $(OBJCOPYARGS) --adjust-section-vma=.vector=0x$$vflashstart $(TOPDIR)/$@ $(TOPDIR)/$@.flashimage; \
|
2007-04-28 21:39:18 +02:00
|
|
|
mv $(TOPDIR)/$@.flashimage $(TOPDIR)/$@; \
|
|
|
|
fi
|
|
|
|
|
2007-04-29 23:50:53 +02:00
|
|
|
.depend: Makefile chip/Make.defs $(SRCS)
|
2007-04-28 21:39:18 +02:00
|
|
|
@if [ -e board/Makefile ]; then \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" depend ; \
|
2007-04-29 23:50:53 +02:00
|
|
|
fi
|
2008-01-08 14:41:00 +01:00
|
|
|
@$(MKDEP) --dep-path chip --dep-path common $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2007-04-28 21:39:18 +02:00
|
|
|
@touch $@
|
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@if [ -e board/Makefile ]; then \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" clean ; \
|
2007-04-28 21:39:18 +02:00
|
|
|
fi
|
2008-01-10 14:38:13 +01:00
|
|
|
@rm -f libarch$(LIBEXT) *~ .*.swp
|
|
|
|
$(call CLEAN)
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
@if [ -e board/Makefile ]; then \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C board TOPDIR="$(TOPDIR)" distclean ; \
|
2007-04-28 21:39:18 +02:00
|
|
|
fi
|
|
|
|
@rm -f Make.dep .depend
|
|
|
|
|
|
|
|
-include Make.dep
|