2008-01-09 23:53:52 +01:00
|
|
|
############################################################################
|
2007-02-18 00:21:28 +01:00
|
|
|
# Makefile
|
|
|
|
#
|
2008-01-09 23:53:52 +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-09 23:53:52 +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-09 23:53:52 +01:00
|
|
|
############################################################################
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-08 00:13:12 +01:00
|
|
|
TOPDIR := ${shell pwd | sed -e 's/ /\\ /g'}
|
2007-02-18 00:21:28 +01:00
|
|
|
-include ${TOPDIR}/.config
|
|
|
|
-include ${TOPDIR}/Make.defs
|
|
|
|
|
2008-01-08 23:11:00 +01:00
|
|
|
# Default tools
|
|
|
|
|
|
|
|
ifeq ($(DIRLINK),)
|
|
|
|
DIRLINK = $(TOPDIR)/tools/link.sh
|
|
|
|
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
|
|
|
|
endif
|
|
|
|
|
2007-06-09 21:11:00 +02:00
|
|
|
# Process architecture and board-specific directories
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
ARCH_DIR = arch/$(CONFIG_ARCH)
|
|
|
|
ARCH_SRC = $(ARCH_DIR)/src
|
2007-03-27 00:22:20 +02:00
|
|
|
ARCH_INC = $(ARCH_DIR)/include
|
2007-04-25 02:09:44 +02:00
|
|
|
BOARD_DIR = configs/$(CONFIG_ARCH_BOARD)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-05 20:05:31 +01:00
|
|
|
# Add-on directories. These may or may not be in place in the
|
|
|
|
# NuttX source tree (they must be specifically installed)
|
|
|
|
|
2008-01-08 01:19:24 +01:00
|
|
|
PCODE_DIR := ${shell if [ -r pcode/Makefile ]; then echo "pcode"; fi}
|
2008-11-25 01:09:53 +01:00
|
|
|
ADDON_DIRS := $(PCODE_DIR) $(NX_DIR)
|
2008-01-05 20:05:31 +01:00
|
|
|
|
2007-06-09 21:11:00 +02:00
|
|
|
# FSDIRS depend on file descriptor support; NONFSDIRS do not
|
|
|
|
# (except for parts of FSDIRS). We will exclude FSDIRS
|
|
|
|
# from the build if file descriptor support is disabled
|
|
|
|
|
2008-11-27 00:42:51 +01:00
|
|
|
NONFSDIRS = sched lib $(ARCH_SRC) mm examples/$(CONFIG_EXAMPLE) $(ADDON_DIRS)
|
2007-06-09 21:11:00 +02:00
|
|
|
FSDIRS = fs drivers
|
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2007-08-27 01:18:13 +02:00
|
|
|
NONFSDIRS += net netutils
|
|
|
|
endif
|
|
|
|
|
2008-12-05 15:04:37 +01:00
|
|
|
ifeq ($(CONFIG_NX),y)
|
2008-11-27 00:42:51 +01:00
|
|
|
NONFSDIRS += graphics
|
|
|
|
endif
|
|
|
|
|
2007-06-09 21:11:00 +02:00
|
|
|
# CLEANDIRS are the directories that will clean in. These are
|
|
|
|
# all directories that we know about.
|
|
|
|
# MAKEDIRS are the directories in which we will build targets
|
|
|
|
|
|
|
|
CLEANDIRS = $(NONFSDIRS) $(FSDIRS)
|
2007-11-20 21:32:33 +01:00
|
|
|
MAKEDIRS = $(NONFSDIRS)
|
2007-06-09 21:11:00 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
2007-11-20 21:32:33 +01:00
|
|
|
ifneq ($(CONFIG_NSOCKET_DESCRIPTORS),0)
|
|
|
|
MAKEDIRS += fs
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NET),y)
|
|
|
|
MAKEDIRS += drivers
|
|
|
|
endif
|
2007-06-09 21:11:00 +02:00
|
|
|
else
|
2007-11-20 21:32:33 +01:00
|
|
|
MAKEDIRS += $(FSDIRS)
|
2007-06-09 21:11:00 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
# LINKLIBS is the list of NuttX libraries that is passed to the
|
|
|
|
# processor-specific Makefile to build the final target.
|
|
|
|
# Libraries in FSDIRS are excluded if file descriptor support
|
|
|
|
# is disabled.
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-28 00:59:20 +01:00
|
|
|
LINKLIBS = sched/libsched$(LIBEXT) $(ARCH_SRC)/libarch$(LIBEXT) mm/libmm$(LIBEXT) \
|
2008-11-27 00:42:51 +01:00
|
|
|
lib/liblib$(LIBEXT) examples/$(CONFIG_EXAMPLE)/lib$(CONFIG_EXAMPLE)$(LIBEXT)
|
2007-06-09 21:11:00 +02:00
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
|
|
|
LINKLIBS += net/libnet$(LIBEXT) netutils/libnetutils$(LIBEXT)
|
2007-06-09 21:11:00 +02:00
|
|
|
endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
ifeq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
|
|
|
ifneq ($(CONFIG_NSOCKET_DESCRIPTORS),0)
|
|
|
|
LINKLIBS += fs/libfs$(LIBEXT)
|
|
|
|
endif
|
2007-09-01 20:06:15 +02:00
|
|
|
ifeq ($(CONFIG_NET),y)
|
2007-11-20 21:32:33 +01:00
|
|
|
LINKLIBS += drivers/libdrivers$(LIBEXT)
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
LINKLIBS += fs/libfs$(LIBEXT) drivers/libdrivers$(LIBEXT)
|
2007-08-27 01:18:13 +02:00
|
|
|
endif
|
|
|
|
|
2008-01-05 20:05:31 +01:00
|
|
|
ifneq ($(PCODE_DIR),)
|
2008-11-25 01:09:53 +01:00
|
|
|
LINKLIBS += $(PCODE_DIR)/libpcode$(LIBEXT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(NX_DIR),)
|
|
|
|
LINKLIBS += $(NX_DIR)/libnx$(LIBEXT)
|
2008-01-05 20:05:31 +01:00
|
|
|
endif
|
|
|
|
|
2008-12-05 15:04:37 +01:00
|
|
|
ifeq ($(CONFIG_NX),y)
|
2008-11-27 00:42:51 +01:00
|
|
|
LINKLIBS += graphics/libgraphics$(LIBEXT)
|
|
|
|
endif
|
|
|
|
|
2007-06-09 21:11:00 +02:00
|
|
|
# This is the name of the final target
|
2007-03-01 00:45:56 +01:00
|
|
|
BIN = nuttx$(EXEEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
.PHONY: clean context clean_context distclean
|
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# Build the mkconfig tool used to create include/nuttx/config.h
|
2007-02-18 00:21:28 +01:00
|
|
|
tools/mkconfig:
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C tools -f Makefile.mkconfig TOPDIR="$(TOPDIR)" mkconfig
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# Create the include/nuttx/config.h file
|
2007-03-23 03:25:54 +01:00
|
|
|
include/nuttx/config.h: $(TOPDIR)/.config tools/mkconfig
|
|
|
|
tools/mkconfig $(TOPDIR) > include/nuttx/config.h
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# link the arch/<arch-name>/include dir to include/arch
|
2007-03-26 18:47:17 +02:00
|
|
|
include/arch: Make.defs
|
2008-01-08 23:11:00 +01:00
|
|
|
@$(DIRLINK) $(TOPDIR)/$(ARCH_DIR)/include include/arch
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# Link the configs/<board-name>/include dir to include/arch/board
|
2008-01-08 23:11:00 +01:00
|
|
|
include/arch/board: include/arch Make.defs include/arch
|
|
|
|
@$(DIRLINK) $(TOPDIR)/$(BOARD_DIR)/include include/arch/board
|
2007-03-26 18:47:17 +02:00
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# Link the configs/<board-name>/src dir to arch/<arch-name>/src/board
|
2007-03-27 00:14:28 +02:00
|
|
|
$(ARCH_SRC)/board: Make.defs
|
2008-01-08 23:11:00 +01:00
|
|
|
@$(DIRLINK) $(TOPDIR)/$(BOARD_DIR)/src $(ARCH_SRC)/board
|
2007-03-27 00:14:28 +02:00
|
|
|
|
2007-04-25 02:09:44 +02:00
|
|
|
# Link arch/<arch-name>/include/<chip-name> to arch/<arch-name>/include/chip
|
|
|
|
$(ARCH_SRC)/chip: Make.defs
|
|
|
|
ifneq ($(CONFIG_ARCH_CHIP),)
|
2008-01-09 01:13:13 +01:00
|
|
|
@$(DIRLINK) $(TOPDIR)/$(ARCH_SRC)/$(CONFIG_ARCH_CHIP) $(ARCH_SRC)/chip
|
2007-04-25 02:09:44 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Link arch/<arch-name>/src/<chip-name> to arch/<arch-name>/src/chip
|
2008-01-08 23:11:00 +01:00
|
|
|
include/arch/chip: include/arch Make.defs
|
2007-04-25 02:09:44 +02:00
|
|
|
ifneq ($(CONFIG_ARCH_CHIP),)
|
2008-01-09 01:13:13 +01:00
|
|
|
@$(DIRLINK) $(TOPDIR)/$(ARCH_INC)/$(CONFIG_ARCH_CHIP) include/arch/chip
|
2007-04-25 02:09:44 +02:00
|
|
|
endif
|
|
|
|
|
2008-01-08 23:11:00 +01:00
|
|
|
dirlinks: include/arch include/arch/board include/arch/chip $(ARCH_SRC)/board $(ARCH_SRC)/chip
|
2007-04-25 02:09:44 +02:00
|
|
|
|
|
|
|
context: check_context include/nuttx/config.h dirlinks
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
clean_context:
|
2008-01-08 23:11:00 +01:00
|
|
|
@rm -f include/nuttx/config.h
|
|
|
|
@$(DIRUNLINK) include/arch/board
|
|
|
|
@$(DIRUNLINK) include/arch/chip
|
|
|
|
@$(DIRUNLINK) include/arch
|
|
|
|
@$(DIRUNLINK) $(ARCH_SRC)/board
|
|
|
|
@$(DIRUNLINK) $(ARCH_SRC)/chip
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
check_context:
|
|
|
|
@if [ ! -e ${TOPDIR}/.config -o ! -e ${TOPDIR}/Make.defs ]; then \
|
|
|
|
echo "" ; echo "Nuttx has not been configured:" ; \
|
|
|
|
echo " cd tools; ./configure.sh <target>\n" ; echo "" ;\
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
sched/libsched$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C sched TOPDIR="$(TOPDIR)" libsched$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
lib/liblib$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C lib TOPDIR="$(TOPDIR)" liblib$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
$(ARCH_SRC)/libarch$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C $(ARCH_SRC) TOPDIR="$(TOPDIR)" libarch$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
mm/libmm$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C mm TOPDIR="$(TOPDIR)" libmm$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-08-27 01:18:13 +02:00
|
|
|
net/libnet$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C net TOPDIR="$(TOPDIR)" libnet$(LIBEXT)
|
2007-08-27 01:18:13 +02:00
|
|
|
|
|
|
|
netutils/libnetutils$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C netutils TOPDIR="$(TOPDIR)" libnetutils$(LIBEXT)
|
2007-08-27 01:18:13 +02:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
fs/libfs$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C fs TOPDIR="$(TOPDIR)" libfs$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
drivers/libdrivers$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C drivers TOPDIR="$(TOPDIR)" libdrivers$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-05 20:05:31 +01:00
|
|
|
pcode/libpcode$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C pcode TOPDIR="$(TOPDIR)" libpcode$(LIBEXT)
|
2008-01-05 20:05:31 +01:00
|
|
|
|
2008-11-26 16:46:12 +01:00
|
|
|
graphics/libgraphics$(LIBEXT): context
|
|
|
|
@$(MAKE) -C graphics TOPDIR="$(TOPDIR)" libgraphics$(LIBEXT)
|
2008-11-25 01:09:53 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
examples/$(CONFIG_EXAMPLE)/lib$(CONFIG_EXAMPLE)$(LIBEXT): context
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C examples/$(CONFIG_EXAMPLE) TOPDIR="$(TOPDIR)" lib$(CONFIG_EXAMPLE)$(LIBEXT)
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-03-01 00:45:56 +01:00
|
|
|
$(BIN): context depend $(LINKLIBS)
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C $(ARCH_SRC) TOPDIR="$(TOPDIR)" LINKLIBS="$(LINKLIBS)" $(BIN)
|
2008-09-16 23:45:41 +02:00
|
|
|
@if [ -w /tftpboot ] ; then \
|
|
|
|
cp -f $(TOPDIR)/$@ /tftpboot/$@.${CONFIG_ARCH}; \
|
|
|
|
fi
|
|
|
|
ifeq ($(CONFIG_RRLOAD_BINARY),y)
|
|
|
|
@$(TOPDIR)/tools/mkimage.sh --Prefix $(CROSSDEV) $(TOPDIR)/$@ $(TOPDIR)/$@.rr
|
|
|
|
@if [ -w /tftpboot ] ; then \
|
|
|
|
cp -f $(TOPDIR)/$@.rr /tftpboot/$@.rr.${CONFIG_ARCH}; \
|
|
|
|
fi
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_INTELHEX_BINARY),y)
|
|
|
|
@$(OBJCOPY) -O ihex $(TOPDIR)/$@ $(TOPDIR)/$@.ihx
|
|
|
|
endif
|
2008-11-05 23:16:22 +01:00
|
|
|
ifeq ($(CONFIG_MOTOROLA_SREC),y)
|
|
|
|
@$(OBJCOPY) -O srec $(TOPDIR)/$@ $(TOPDIR)/$@.srec
|
|
|
|
endif
|
2008-09-18 01:14:42 +02:00
|
|
|
ifeq ($(CONFIG_RAW_BINARY),y)
|
|
|
|
@$(OBJCOPY) -O binary $(TOPDIR)/$@ $(TOPDIR)/$@.bin
|
|
|
|
endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
depend:
|
2007-09-23 18:58:09 +02:00
|
|
|
@for dir in $(MAKEDIRS) ; do \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" depend ; \
|
2007-02-18 00:21:28 +01:00
|
|
|
done
|
|
|
|
|
2007-03-27 00:14:28 +02:00
|
|
|
subdir_clean:
|
2007-06-09 21:11:00 +02:00
|
|
|
@for dir in $(CLEANDIRS) ; do \
|
2007-03-27 00:14:28 +02:00
|
|
|
if [ -e $$dir/Makefile ]; then \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" clean ; \
|
2007-03-27 00:14:28 +02:00
|
|
|
fi \
|
2007-02-18 00:21:28 +01:00
|
|
|
done
|
2008-01-08 18:06:21 +01:00
|
|
|
@$(MAKE) -C tools -f Makefile.mkconfig TOPDIR="$(TOPDIR)" clean
|
|
|
|
@$(MAKE) -C mm -f Makefile.test TOPDIR="$(TOPDIR)" clean
|
2007-03-27 00:14:28 +02:00
|
|
|
|
|
|
|
clean: subdir_clean
|
2009-02-28 19:50:44 +01:00
|
|
|
@rm -f $(BIN) nuttx.* mm_test *.map *~
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-03-27 00:14:28 +02:00
|
|
|
subdir_distclean:
|
2007-06-09 21:11:00 +02:00
|
|
|
@for dir in $(CLEANDIRS) ; do \
|
2007-03-27 00:14:28 +02:00
|
|
|
if [ -e $$dir/Makefile ]; then \
|
2008-01-08 14:02:47 +01:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" distclean ; \
|
2007-03-27 00:14:28 +02:00
|
|
|
fi \
|
2007-02-18 00:21:28 +01:00
|
|
|
done
|
2007-03-27 00:14:28 +02:00
|
|
|
|
|
|
|
distclean: clean subdir_distclean clean_context
|
2008-01-10 14:38:13 +01:00
|
|
|
@rm -f Make.defs setenv.sh .config
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
|