2008-01-10 06:53:52 +08:00
|
|
|
############################################################################
|
2018-05-30 02:14:55 +08:00
|
|
|
# tools/Makefile.unix
|
2007-02-18 07:21:28 +08:00
|
|
|
#
|
2019-08-26 23:46:05 +08:00
|
|
|
# Copyright (C) 2007-2012, 2014-2015, 2018-2019 Gregory Nutt. All rights
|
|
|
|
# reserved.
|
2012-07-08 22:50:43 +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-10 06:53:52 +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-10 06:53:52 +08:00
|
|
|
############################################################################
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2019-10-02 21:09:28 +08:00
|
|
|
TOPDIR := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
|
2012-11-26 21:22:51 +08:00
|
|
|
-include $(TOPDIR)/.config
|
|
|
|
include $(TOPDIR)/tools/Config.mk
|
|
|
|
-include $(TOPDIR)/Make.defs
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2019-12-14 02:43:44 +08:00
|
|
|
# GIT directory present
|
|
|
|
|
|
|
|
GIT_DIR = $(if $(wildcard $(TOPDIR)$(DELIM).git),y,)
|
|
|
|
|
|
|
|
# In case we cannot get version information from GIT
|
|
|
|
|
|
|
|
ifneq ($(GIT_DIR),y)
|
|
|
|
-include $(TOPDIR)/.version
|
|
|
|
|
|
|
|
# In case the version file does not exist
|
2019-12-14 02:34:17 +08:00
|
|
|
|
|
|
|
CONFIG_VERSION_STRING ?= "0.0"
|
|
|
|
CONFIG_VERSION_BUILD ?= "0"
|
|
|
|
|
2019-12-14 02:43:44 +08:00
|
|
|
VERSION_ARG = -v $(CONFIG_VERSION_STRING) -b $(CONFIG_VERSION_BUILD)
|
|
|
|
endif
|
|
|
|
|
2012-09-26 22:36:28 +08:00
|
|
|
# Control build verbosity
|
2014-09-05 02:35:47 +08:00
|
|
|
#
|
|
|
|
# V=1,2: Enable echo of commands
|
|
|
|
# V=2: Enable bug/verbose options in tools and scripts
|
2012-09-26 22:36:28 +08:00
|
|
|
|
2012-09-18 22:06:57 +08:00
|
|
|
ifeq ($(V),1)
|
|
|
|
export Q :=
|
|
|
|
else
|
2014-09-05 02:35:47 +08:00
|
|
|
ifeq ($(V),2)
|
|
|
|
export Q :=
|
|
|
|
else
|
2012-09-18 22:06:57 +08:00
|
|
|
export Q := @
|
|
|
|
endif
|
2014-09-05 02:35:47 +08:00
|
|
|
endif
|
2012-09-18 22:06:57 +08:00
|
|
|
|
2008-01-09 06:11:00 +08:00
|
|
|
# Default tools
|
|
|
|
|
|
|
|
ifeq ($(DIRLINK),)
|
2016-08-02 22:37:30 +08:00
|
|
|
DIRLINK = $(TOPDIR)/tools/link.sh
|
|
|
|
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
|
2008-01-09 06:11:00 +08:00
|
|
|
endif
|
|
|
|
|
2011-04-04 02:42:33 +08:00
|
|
|
# This define is passed as EXTRADEFINES for kernel-mode builds. It is also passed
|
|
|
|
# during PASS1 (but not PASS2) context and depend targets.
|
|
|
|
|
2018-05-13 17:22:25 +08:00
|
|
|
KDEFINE = ${shell $(DEFINE) "$(CC)" __KERNEL__}
|
2011-04-04 02:42:33 +08:00
|
|
|
|
2007-06-10 03:11:00 +08:00
|
|
|
# Process architecture and board-specific directories
|
|
|
|
|
2012-11-10 06:37:52 +08:00
|
|
|
ARCH_DIR = arch/$(CONFIG_ARCH)
|
|
|
|
ARCH_SRC = $(ARCH_DIR)/src
|
|
|
|
ARCH_INC = $(ARCH_DIR)/include
|
2014-01-17 00:42:54 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_BOARD_CUSTOM),y)
|
2015-12-09 00:09:30 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_BOARD_CUSTOM_DIR_RELPATH),y)
|
|
|
|
BOARD_DIR = $(TOPDIR)$(DELIM)$(CONFIG_ARCH_BOARD_CUSTOM_DIR)
|
2014-01-17 00:42:54 +08:00
|
|
|
else
|
2015-12-09 00:09:30 +08:00
|
|
|
BOARD_DIR = $(CONFIG_ARCH_BOARD_CUSTOM_DIR)
|
|
|
|
endif
|
|
|
|
else
|
2019-08-21 21:39:29 +08:00
|
|
|
BOARD_DIR = $(TOPDIR)$(DELIM)boards$(DELIM)$(CONFIG_ARCH)$(DELIM)$(CONFIG_ARCH_CHIP)
|
2014-01-17 00:42:54 +08:00
|
|
|
endif
|
2019-08-26 23:46:05 +08:00
|
|
|
|
2019-09-30 20:49:20 +08:00
|
|
|
COMMON_DIR = $(if $(wildcard $(BOARD_DIR)/common/Makefile),y,)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2011-03-22 05:59:35 +08:00
|
|
|
# CONFIG_APPS_DIR can be over-ridden from the command line or in the .config file.
|
|
|
|
# The default value of CONFIG_APPS_DIR is ../apps. Ultimately, the application
|
|
|
|
# will be built if APPDIR is defined. APPDIR will be defined if a directory containing
|
|
|
|
# a Makefile is found at the path provided by CONFIG_APPS_DIR
|
2008-01-06 03:05:31 +08:00
|
|
|
|
2011-03-22 05:59:35 +08:00
|
|
|
ifeq ($(CONFIG_APPS_DIR),)
|
2012-11-10 06:37:52 +08:00
|
|
|
CONFIG_APPS_DIR = ../apps
|
2011-03-12 01:37:41 +08:00
|
|
|
endif
|
2012-11-10 06:37:52 +08:00
|
|
|
APPDIR := ${shell if [ -r $(CONFIG_APPS_DIR)/Makefile ]; then echo "$(CONFIG_APPS_DIR)"; fi}
|
2011-03-22 05:59:35 +08:00
|
|
|
|
2011-04-02 05:36:17 +08:00
|
|
|
# CONTEXTDIRS include directories that have special, one-time pre-build
|
|
|
|
# requirements. Normally this includes things like auto-generation of
|
|
|
|
# configuration specific files or creation of configurable symbolic links
|
2019-12-03 20:38:53 +08:00
|
|
|
# CLEANDIRS are the directories that the clean target will executed in.
|
|
|
|
# These are all directories that we know about.
|
|
|
|
# CCLEANDIRS are directories that the clean_context target will execute in.
|
|
|
|
# The clean_context target "undoes" the actions of the context target.
|
|
|
|
# Only directories known to require cleaning are included.
|
2011-04-04 00:43:35 +08:00
|
|
|
# KERNDEPDIRS are the directories in which we will build target dependencies.
|
2014-08-30 23:57:44 +08:00
|
|
|
# If NuttX and applications are built separately (CONFIG_BUILD_PROTECTED or
|
|
|
|
# CONFIG_BUILD_KERNEL), then this holds only the directories containing
|
|
|
|
# kernel files.
|
2014-08-30 04:47:22 +08:00
|
|
|
# USERDEPDIRS. If NuttX and applications are built separately (CONFIG_BUILD_PROTECTED),
|
2014-08-30 23:57:44 +08:00
|
|
|
# then this holds only the directories containing user files. If
|
|
|
|
# CONFIG_BUILD_KERNEL is selected, then applications are not build at all.
|
2007-06-10 03:11:00 +08:00
|
|
|
|
2018-05-30 02:14:55 +08:00
|
|
|
include tools/Directories.mk
|
2014-07-03 21:42:44 +08:00
|
|
|
|
2010-08-28 10:30:50 +08:00
|
|
|
#
|
2010-08-29 22:27:58 +08:00
|
|
|
# Extra objects used in the final link.
|
|
|
|
#
|
2018-07-09 08:24:45 +08:00
|
|
|
# Pass 1 Incremental (relative) link objects should be put into the
|
2010-08-29 22:27:58 +08:00
|
|
|
# processor-specific source directory (where other link objects will
|
2014-01-31 09:00:23 +08:00
|
|
|
# be created). If the pass1 object is an archive, it could go anywhere.
|
2010-08-28 10:30:50 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2012-11-10 06:37:52 +08:00
|
|
|
EXTRA_OBJS += $(CONFIG_PASS1_OBJECT)
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
|
|
|
|
2014-08-31 00:07:39 +08:00
|
|
|
# Library build selections
|
2014-09-05 01:43:41 +08:00
|
|
|
#
|
|
|
|
# NUTTXLIBS is the list of NuttX libraries that is passed to the
|
|
|
|
# processor-specific Makefile to build the final NuttX target.
|
|
|
|
# USERLIBS is the list of libraries used to build the final user-space
|
|
|
|
# application
|
|
|
|
# EXPORTLIBS is the list of libraries that should be exported by
|
|
|
|
# 'make export' is
|
2009-04-19 23:59:07 +08:00
|
|
|
|
2014-08-31 00:43:58 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
2018-05-30 02:14:55 +08:00
|
|
|
include tools/ProtectedLibs.mk
|
2014-08-31 00:43:58 +08:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_BUILD_KERNEL),y)
|
2018-05-30 02:14:55 +08:00
|
|
|
include tools/KernelLibs.mk
|
2014-08-31 00:43:58 +08:00
|
|
|
else
|
2018-05-30 02:14:55 +08:00
|
|
|
include tools/FlatLibs.mk
|
2014-08-31 00:43:58 +08:00
|
|
|
endif
|
|
|
|
endif
|
2013-05-20 05:12:28 +08:00
|
|
|
|
2014-08-31 00:07:39 +08:00
|
|
|
# LINKLIBS derives from NUTTXLIBS and is simply the same list with the
|
2014-09-05 01:43:41 +08:00
|
|
|
# subdirectory removed
|
2012-11-11 08:57:22 +08:00
|
|
|
|
2018-05-30 01:36:21 +08:00
|
|
|
LINKLIBS = $(patsubst staging/%,%,$(NUTTXLIBS))
|
2012-11-11 08:57:22 +08:00
|
|
|
|
2014-09-05 02:19:47 +08:00
|
|
|
# Export tool definitions
|
|
|
|
|
|
|
|
MKEXPORT= tools/mkexport.sh
|
|
|
|
MKEXPORT_ARGS = -w$(WINTOOL) -t "$(TOPDIR)"
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
|
|
|
MKEXPORT_ARGS += -u
|
2018-08-24 01:08:22 +08:00
|
|
|
else ifeq ($(CONFIG_BUILD_KERNEL),y)
|
|
|
|
MKEXPORT_ARGS += -u
|
2018-08-23 02:26:52 +08:00
|
|
|
endif
|
2014-09-05 02:19:47 +08:00
|
|
|
|
2019-08-30 21:19:15 +08:00
|
|
|
ifneq ($(APPDIR),)
|
|
|
|
ifneq ($(shell [ -e $(APPDIR)/Makefile ] && echo yes),)
|
|
|
|
MKEXPORT_ARGS += -a "$(APPDIR)"
|
|
|
|
MKEXPORT_ARGS += -m "$(MAKE)"
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-09-05 02:35:47 +08:00
|
|
|
ifeq ($(V),2)
|
2014-09-05 02:19:47 +08:00
|
|
|
MKEXPORT_ARGS += -d
|
|
|
|
endif
|
|
|
|
|
2020-02-23 16:50:23 +08:00
|
|
|
# This is the name of the final target (relative to the top level directory)
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2017-02-10 20:59:41 +08:00
|
|
|
NUTTXNAME = nuttx
|
|
|
|
BIN = $(NUTTXNAME)$(EXEEXT)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2019-08-26 23:46:05 +08:00
|
|
|
all: $(BIN)
|
2019-12-13 01:17:11 +08:00
|
|
|
.PHONY: dirlinks context clean_context check_context config oldconfig menuconfig nconfig qconfig gconfig export subdir_clean clean subdir_distclean distclean apps_clean apps_distclean
|
2020-02-25 14:18:56 +08:00
|
|
|
.PHONY: pass1 pass1deps pass1dep
|
|
|
|
.PHONY: pass2 pass2deps pass2dep
|
2019-09-07 22:44:16 +08:00
|
|
|
ifeq ($(GIT_DIR),y)
|
|
|
|
.PHONY: $(TOPDIR)/.version
|
|
|
|
endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2016-07-22 03:58:09 +08:00
|
|
|
# Target used to copy include/nuttx/lib/math.h. If CONFIG_ARCH_MATH_H is
|
2012-04-07 22:08:37 +08:00
|
|
|
# defined, then there is an architecture specific math.h header file
|
|
|
|
# that will be included indirectly from include/math.h. But first, we
|
2012-10-29 02:42:09 +08:00
|
|
|
# have to copy math.h from include/nuttx/. to include/. Logic within
|
2016-07-22 03:58:09 +08:00
|
|
|
# include/nuttx/lib/math.h will hand the redirection to the architecture-
|
2012-10-29 02:42:09 +08:00
|
|
|
# specific math.h header file.
|
|
|
|
#
|
2012-11-10 23:47:45 +08:00
|
|
|
# If the CONFIG_LIBM is defined, the Rhombus libm will be built at libc/math.
|
2012-10-29 02:42:09 +08:00
|
|
|
# Definitions and prototypes for the Rhombus libm are also contained in
|
2016-07-22 03:58:09 +08:00
|
|
|
# include/nuttx/lib/math.h and so the file must also be copied in that case.
|
2012-10-29 02:42:09 +08:00
|
|
|
#
|
|
|
|
# If neither CONFIG_ARCH_MATH_H nor CONFIG_LIBM is defined, then no math.h
|
|
|
|
# header file will be provided. You would want that behavior if (1) you
|
|
|
|
# don't use libm, or (2) you want to use the math.h and libm provided
|
|
|
|
# within your toolchain.
|
2012-04-07 22:08:37 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_MATH_H),y)
|
2012-10-29 02:42:09 +08:00
|
|
|
NEED_MATH_H = y
|
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_LIBM),y)
|
|
|
|
NEED_MATH_H = y
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NEED_MATH_H),y)
|
2016-07-22 03:58:09 +08:00
|
|
|
include/math.h: include/nuttx/lib/math.h
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) cp -pf include/nuttx/lib/math.h include/math.h
|
2012-04-07 22:08:37 +08:00
|
|
|
else
|
|
|
|
include/math.h:
|
|
|
|
endif
|
|
|
|
|
2012-10-29 02:42:09 +08:00
|
|
|
# The float.h header file defines the properties of your floating point
|
|
|
|
# implementation. It would always be best to use your toolchain's float.h
|
2014-01-31 09:00:23 +08:00
|
|
|
# header file but if none is available, a default float.h header file will
|
2012-10-29 02:42:09 +08:00
|
|
|
# provided if this option is selected. However there is no assurance that
|
|
|
|
# the settings in this float.h are actually correct for your platform!
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_FLOAT_H),y)
|
2016-07-22 04:03:35 +08:00
|
|
|
include/float.h: include/nuttx/lib/float.h
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) cp -pf include/nuttx/lib/float.h include/float.h
|
2012-10-29 02:42:09 +08:00
|
|
|
else
|
|
|
|
include/float.h:
|
|
|
|
endif
|
|
|
|
|
2016-07-22 03:48:20 +08:00
|
|
|
# Target used to copy include/nuttx/lib/stdarg.h. If CONFIG_ARCH_STDARG_H is
|
2012-07-08 22:50:43 +08:00
|
|
|
# defined, then there is an architecture specific stdarg.h header file
|
2016-07-22 03:48:20 +08:00
|
|
|
# that will be included indirectly from include/lib/stdarg.h. But first, we
|
2012-07-08 22:50:43 +08:00
|
|
|
# have to copy stdarg.h from include/nuttx/. to include/.
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_STDARG_H),y)
|
2016-07-22 03:48:20 +08:00
|
|
|
include/stdarg.h: include/nuttx/lib/stdarg.h
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) cp -pf include/nuttx/lib/stdarg.h include/stdarg.h
|
2012-07-08 22:50:43 +08:00
|
|
|
else
|
|
|
|
include/stdarg.h:
|
|
|
|
endif
|
|
|
|
|
2019-08-07 05:59:19 +08:00
|
|
|
# Target used to copy include/nuttx/lib/setjmp.h. If CONFIG_ARCH_SETJMP_H is
|
|
|
|
# defined, then there is an architecture specific setjmp.h header file
|
|
|
|
# that will be included indirectly from include/lib/setjmp.h. But first, we
|
|
|
|
# have to copy setjmp.h from include/nuttx/. to include/.
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
|
|
|
include/setjmp.h: include/nuttx/lib/setjmp.h
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) cp -pf include/nuttx/lib/setjmp.h include/setjmp.h
|
2019-08-07 05:59:19 +08:00
|
|
|
else
|
|
|
|
include/setjmp.h:
|
|
|
|
endif
|
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# Targets used to build include/nuttx/version.h. Creation of version.h is
|
2012-08-16 23:00:34 +08:00
|
|
|
# part of the overall NuttX configuration sequence. Notice that the
|
|
|
|
# tools/mkversion tool is built and used to create include/nuttx/version.h
|
2011-07-12 06:52:51 +08:00
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
tools/mkversion$(HOSTEXEEXT):
|
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" mkversion$(HOSTEXEEXT)
|
2011-04-15 00:46:17 +08:00
|
|
|
|
2019-09-07 22:44:16 +08:00
|
|
|
# [Re-]create .version if it doesn't already exist.
|
2019-08-26 23:46:05 +08:00
|
|
|
|
2011-04-15 00:46:17 +08:00
|
|
|
$(TOPDIR)/.version:
|
2019-09-07 22:44:16 +08:00
|
|
|
$(Q) echo "Create .version"
|
2019-12-14 02:43:44 +08:00
|
|
|
$(Q) tools/version.sh $(VERSION_ARG) .version
|
2019-09-07 22:44:16 +08:00
|
|
|
$(Q) chmod 755 .version
|
2019-08-26 23:09:33 +08:00
|
|
|
|
2019-09-07 22:44:16 +08:00
|
|
|
include/nuttx/version.h: $(TOPDIR)/.version tools/mkversion$(HOSTEXEEXT)
|
|
|
|
$(Q) echo "Create version.h"
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) tools/mkversion $(TOPDIR) > $@.tmp
|
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@)
|
2011-04-15 00:46:17 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# Targets used to build include/nuttx/config.h. Creation of config.h is
|
2012-08-16 23:00:34 +08:00
|
|
|
# part of the overall NuttX configuration sequence. Notice that the
|
|
|
|
# tools/mkconfig tool is built and used to create include/nuttx/config.h
|
2011-07-12 06:52:51 +08:00
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
tools/mkconfig$(HOSTEXEEXT):
|
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" mkconfig$(HOSTEXEEXT)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2018-05-30 03:21:26 +08:00
|
|
|
staging:
|
2019-09-16 21:41:25 +08:00
|
|
|
$(Q) mkdir -p staging
|
2018-05-30 03:21:26 +08:00
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
include/nuttx/config.h: $(TOPDIR)/.config tools/mkconfig$(HOSTEXEEXT)
|
2019-09-16 00:56:26 +08:00
|
|
|
$(Q) tools/mkconfig $(TOPDIR) > include/nuttx/config.h.tmp
|
|
|
|
$(Q) $(call TESTANDREPLACEFILE, include/nuttx/config.h.tmp, $@)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
# Targets used to create dependencies
|
|
|
|
|
|
|
|
tools/mkdeps$(HOSTEXEEXT):
|
2016-01-10 07:27:56 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" mkdeps$(HOSTEXEEXT)
|
|
|
|
|
|
|
|
tools/cnvwindeps$(HOSTEXEEXT):
|
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" cnvwindeps$(HOSTEXEEXT)
|
2012-11-13 10:39:01 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# dirlinks, and helpers
|
|
|
|
#
|
|
|
|
# Directories links. Most of establishing the NuttX configuration involves
|
|
|
|
# setting up symbolic links with 'generic' directory names to specific,
|
|
|
|
# configured directories.
|
2017-06-01 05:17:28 +08:00
|
|
|
|
2017-06-03 06:42:44 +08:00
|
|
|
# Make.defs:
|
|
|
|
# $(Q) echo "No Make.defs file found, creating one"
|
|
|
|
# $(Q) echo "include $(TOPDIR)$(DELIM).config" > Make.defs
|
|
|
|
# $(Q) echo "include $(TOPDIR)$(DELIM)tools$(DELIM)Config.mk" >> Make.defs
|
|
|
|
|
|
|
|
# tools/initialconfig$(HOSTEXEEXT):
|
|
|
|
# $(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" initialconfig$(HOSTEXEEXT)
|
|
|
|
#
|
|
|
|
# .config: tools/initialconfig$(HOSTEXEEXT)
|
|
|
|
# $(Q) echo "No .config file found, creating one"
|
|
|
|
# $(Q) tools/initialconfig$(HOSTEXEEXT)
|
2017-06-03 03:06:09 +08:00
|
|
|
|
2011-05-10 06:21:10 +08:00
|
|
|
# Link the arch/<arch-name>/include directory to include/arch
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2017-06-03 06:42:44 +08:00
|
|
|
include/arch: .config
|
2012-11-26 04:58:39 +08:00
|
|
|
@echo "LN: include/arch to $(ARCH_DIR)/include"
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(DIRLINK) $(TOPDIR)/$(ARCH_DIR)/include include/arch
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2019-08-21 21:39:29 +08:00
|
|
|
# Link the boards/<arch>/<chip>/<board>/include directory to include/arch/board
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2017-06-03 07:09:08 +08:00
|
|
|
include/arch/board: include/arch
|
2019-08-21 21:39:29 +08:00
|
|
|
@echo "LN: include/arch/board to $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/include"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/include include/arch/board
|
2007-03-27 00:47:17 +08:00
|
|
|
|
2019-08-22 01:25:16 +08:00
|
|
|
ifeq ($(COMMON_DIR),y)
|
|
|
|
# Link the boards/<arch>/<chip>/common dir to arch/<arch-name>/src/board
|
2019-08-24 03:23:31 +08:00
|
|
|
# Link the boards/<arch>/<chip>/<board>/src dir to arch/<arch-name>/src/board/board
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2019-08-22 01:25:16 +08:00
|
|
|
$(ARCH_SRC)/board: .config
|
|
|
|
@echo "LN: $(ARCH_SRC)/board to $(BOARD_DIR)/common"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/common $(ARCH_SRC)/board
|
|
|
|
@echo "LN: $(ARCH_SRC)/board/board to $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/src"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/src $(ARCH_SRC)/board/board
|
|
|
|
else
|
2019-08-24 03:23:31 +08:00
|
|
|
# Link the boards/<arch>/<chip>/<board>/src dir to arch/<arch-name>/src/board
|
2019-08-22 01:25:16 +08:00
|
|
|
|
2017-06-03 06:42:44 +08:00
|
|
|
$(ARCH_SRC)/board: .config
|
2019-08-21 21:39:29 +08:00
|
|
|
@echo "LN: $(ARCH_SRC)/board to $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/src"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/$(CONFIG_ARCH_BOARD)/src $(ARCH_SRC)/board
|
2019-08-22 01:25:16 +08:00
|
|
|
endif
|
2019-08-21 21:39:29 +08:00
|
|
|
|
|
|
|
# Link the boards/<arch>/<chip>/drivers dir to drivers/platform
|
|
|
|
|
|
|
|
$(ARCH_SRC)/drivers: .config
|
2019-09-05 08:58:52 +08:00
|
|
|
@echo "LN: $(TOPDIR)/drivers/platform to $(BOARD_DIR)/drivers"
|
2019-08-21 21:39:29 +08:00
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/drivers $(TOPDIR)/drivers/platform
|
2007-03-27 06:14:28 +08:00
|
|
|
|
2019-09-30 21:11:26 +08:00
|
|
|
# Link arch/<arch-name>/src/<chip-name> to arch/<arch-name>/src/chip
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2017-06-03 06:42:44 +08:00
|
|
|
$(ARCH_SRC)/chip: .config
|
2007-04-25 08:09:44 +08:00
|
|
|
ifneq ($(CONFIG_ARCH_CHIP),)
|
2012-11-26 04:58:39 +08:00
|
|
|
@echo "LN: $(ARCH_SRC)/chip to $(ARCH_SRC)/$(CONFIG_ARCH_CHIP)"
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(DIRLINK) $(TOPDIR)/$(ARCH_SRC)/$(CONFIG_ARCH_CHIP) $(ARCH_SRC)/chip
|
2007-04-25 08:09:44 +08:00
|
|
|
endif
|
|
|
|
|
2019-09-30 21:11:26 +08:00
|
|
|
# Link arch/<arch-name>/include/<chip-name> to include/arch/chip
|
2011-04-06 04:54:00 +08:00
|
|
|
|
2017-06-03 07:09:08 +08:00
|
|
|
include/arch/chip: include/arch
|
2007-04-25 08:09:44 +08:00
|
|
|
ifneq ($(CONFIG_ARCH_CHIP),)
|
2012-11-26 04:58:39 +08:00
|
|
|
@echo "LN: include/arch/chip to $(ARCH_INC)/$(CONFIG_ARCH_CHIP)"
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(DIRLINK) $(TOPDIR)/$(ARCH_INC)/$(CONFIG_ARCH_CHIP) include/arch/chip
|
2007-04-25 08:09:44 +08:00
|
|
|
endif
|
|
|
|
|
2019-08-21 21:39:29 +08:00
|
|
|
dirlinks: include/arch include/arch/board include/arch/chip $(ARCH_SRC)/board $(ARCH_SRC)/chip $(ARCH_SRC)/drivers
|
2019-08-05 20:04:14 +08:00
|
|
|
$(Q) $(MAKE) -C boards dirlinks TOPDIR="$(TOPDIR)"
|
2019-11-03 01:30:33 +08:00
|
|
|
$(Q) $(MAKE) -C openamp dirlinks TOPDIR="$(TOPDIR)"
|
2016-07-29 01:59:22 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_APPS_DIR) dirlinks TOPDIR="$(TOPDIR)"
|
2007-04-25 08:09:44 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# context
|
|
|
|
#
|
|
|
|
# The context target is invoked on each target build to assure that NuttX is
|
|
|
|
# properly configured. The basic configuration steps include creation of the
|
|
|
|
# the config.h and version.h header files in the include/nuttx directory and
|
|
|
|
# the establishment of symbolic links to configured directories.
|
|
|
|
|
2019-08-07 05:59:19 +08:00
|
|
|
context: check_context staging include/nuttx/config.h include/nuttx/version.h include/math.h include/float.h include/stdarg.h include/setjmp.h dirlinks
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(CONTEXTDIRS) ; do \
|
2011-04-04 02:42:33 +08:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" context; \
|
2009-12-18 01:53:25 +08:00
|
|
|
done
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# clean_context
|
|
|
|
#
|
|
|
|
# This is part of the distclean target. It removes all of the header files
|
|
|
|
# and symbolic links created by the context target.
|
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
clean_context:
|
2019-12-03 20:38:53 +08:00
|
|
|
$(Q) for dir in $(CCLEANDIRS) ; do \
|
|
|
|
if [ -e $$dir/Makefile ]; then \
|
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" clean_context ; \
|
|
|
|
fi \
|
|
|
|
done
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, include/math.h)
|
|
|
|
$(call DELFILE, include/stdarg.h)
|
2019-08-07 05:59:19 +08:00
|
|
|
$(call DELFILE, include/setjmp.h)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# check_context
|
|
|
|
#
|
|
|
|
# This target checks if NuttX has been configured. NuttX is configured using
|
|
|
|
# the script tools/configure.sh. That script will install certain files in
|
|
|
|
# the top-level NuttX build directory. This target verifies that those
|
|
|
|
# configuration files have been installed and that NuttX is ready to be built.
|
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
check_context:
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) if [ ! -e ${TOPDIR}/.config -o ! -e ${TOPDIR}/Make.defs ]; then \
|
2018-05-10 07:04:00 +08:00
|
|
|
echo "" ; \
|
|
|
|
echo "Nuttx has not been configured:" ; \
|
|
|
|
echo " tools/configure.sh <target>" ; \
|
|
|
|
echo "" ; \
|
2007-02-18 07:21:28 +08:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
2014-01-31 09:00:23 +08:00
|
|
|
# Archive targets. The target build sequence will first create a series of
|
2012-01-01 00:53:05 +08:00
|
|
|
# libraries, one per configured source file directory. The final NuttX
|
|
|
|
# execution will then be built from those libraries. The following targets
|
2012-11-20 03:53:53 +08:00
|
|
|
# build those libraries.
|
2013-03-23 22:46:02 +08:00
|
|
|
|
2018-05-30 02:14:55 +08:00
|
|
|
include tools/LibTargets.mk
|
2013-03-23 22:46:02 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# pass1 and pass2
|
|
|
|
#
|
2010-08-29 22:27:58 +08:00
|
|
|
# If the 2 pass build option is selected, then this pass1 target is
|
2011-04-03 22:26:05 +08:00
|
|
|
# configured to built before the pass2 target. This pass1 target may, as an
|
|
|
|
# example, build an extra link object (CONFIG_PASS1_OBJECT) which may be an
|
|
|
|
# incremental (relative) link object, but could be a static library (archive);
|
|
|
|
# some modification to this Makefile would be required if CONFIG_PASS1_OBJECT
|
|
|
|
# is an archive. Exactly what is performed during pass1 or what it generates
|
2014-01-31 09:00:23 +08:00
|
|
|
# is unknown to this makefile unless CONFIG_PASS1_OBJECT is defined.
|
2010-08-29 22:27:58 +08:00
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
pass1deps: pass1dep $(USERLIBS)
|
2011-04-03 03:04:44 +08:00
|
|
|
|
|
|
|
pass1: pass1deps
|
2010-08-28 10:30:50 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) if [ -z "$(CONFIG_PASS1_BUILDIR)" ]; then \
|
2010-08-29 22:27:58 +08:00
|
|
|
echo "ERROR: CONFIG_PASS1_BUILDIR not defined"; \
|
2010-08-28 10:30:50 +08:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) if [ ! -d "$(CONFIG_PASS1_BUILDIR)" ]; then \
|
2010-08-29 22:27:58 +08:00
|
|
|
echo "ERROR: CONFIG_PASS1_BUILDIR does not exist"; \
|
2010-08-28 10:30:50 +08:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) if [ ! -f "$(CONFIG_PASS1_BUILDIR)/Makefile" ]; then \
|
2010-08-29 22:27:58 +08:00
|
|
|
echo "ERROR: No Makefile in CONFIG_PASS1_BUILDIR"; \
|
2010-08-28 10:30:50 +08:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2012-11-11 21:52:31 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) TOPDIR="$(TOPDIR)" LINKLIBS="$(LINKLIBS)" USERLIBS="$(USERLIBS)" "$(CONFIG_PASS1_TARGET)"
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
|
|
|
|
2012-11-13 10:39:01 +08:00
|
|
|
pass2deps: pass2dep $(NUTTXLIBS)
|
2011-04-03 03:04:44 +08:00
|
|
|
|
|
|
|
pass2: pass2deps
|
2012-11-11 21:52:31 +08:00
|
|
|
$(Q) $(MAKE) -C $(ARCH_SRC) TOPDIR="$(TOPDIR)" EXTRA_OBJS="$(EXTRA_OBJS)" LINKLIBS="$(LINKLIBS)" EXTRADEFINES=$(KDEFINE) $(BIN)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) if [ -w /tftpboot ] ; then \
|
2011-04-12 06:27:00 +08:00
|
|
|
cp -f $(BIN) /tftpboot/$(BIN).${CONFIG_ARCH}; \
|
2008-09-17 05:45:41 +08:00
|
|
|
fi
|
|
|
|
ifeq ($(CONFIG_INTELHEX_BINARY),y)
|
2017-02-10 20:59:41 +08:00
|
|
|
@echo "CP: $(NUTTXNAME).hex"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O ihex $(BIN) $(NUTTXNAME).hex
|
2008-09-17 05:45:41 +08:00
|
|
|
endif
|
2008-11-06 06:16:22 +08:00
|
|
|
ifeq ($(CONFIG_MOTOROLA_SREC),y)
|
2017-02-10 20:59:41 +08:00
|
|
|
@echo "CP: $(NUTTXNAME).srec"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O srec $(BIN) $(NUTTXNAME).srec
|
2008-11-06 06:16:22 +08:00
|
|
|
endif
|
2008-09-18 07:14:42 +08:00
|
|
|
ifeq ($(CONFIG_RAW_BINARY),y)
|
2017-02-10 20:59:41 +08:00
|
|
|
@echo "CP: $(NUTTXNAME).bin"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O binary $(BIN) $(NUTTXNAME).bin
|
2008-09-18 07:14:42 +08:00
|
|
|
endif
|
2014-04-02 01:56:58 +08:00
|
|
|
ifeq ($(CONFIG_UBOOT_UIMAGE),y)
|
|
|
|
@echo "MKIMAGE: uImage"
|
2017-07-16 23:23:03 +08:00
|
|
|
$(Q) mkimage -A $(CONFIG_ARCH) -O linux -C none -T kernel -a $(CONFIG_UIMAGE_LOAD_ADDRESS) \
|
2017-02-10 20:59:41 +08:00
|
|
|
-e $(CONFIG_UIMAGE_ENTRY_POINT) -n $(BIN) -d $(NUTTXNAME).bin uImage
|
2014-04-02 01:56:58 +08:00
|
|
|
$(Q) if [ -w /tftpboot ] ; then \
|
|
|
|
cp -f uImage /tftpboot/uImage; \
|
|
|
|
fi
|
|
|
|
endif
|
2020-03-06 21:54:30 +08:00
|
|
|
$(call POSTBUILD)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# $(BIN)
|
|
|
|
#
|
|
|
|
# Create the final NuttX executable in a two pass build process. In the
|
|
|
|
# normal case, all pass1 and pass2 dependencies are created then pass1
|
2011-04-03 03:04:44 +08:00
|
|
|
# and pass2 targets are built. However, in some cases, you may need to build
|
2014-01-31 09:00:23 +08:00
|
|
|
# pass1 dependencies and pass1 first, then build pass2 dependencies and pass2.
|
2011-04-03 03:04:44 +08:00
|
|
|
# in that case, execute 'make pass1 pass2' from the command line.
|
|
|
|
|
2018-05-30 03:21:26 +08:00
|
|
|
$(BIN): pass1deps pass2deps pass1 pass2
|
2011-04-03 03:04:44 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# download
|
|
|
|
#
|
|
|
|
# This is a helper target that will rebuild NuttX and download it to the target
|
|
|
|
# system in one step. The operation of this target depends completely upon
|
|
|
|
# implementation of the DOWNLOAD command in the user Make.defs file. It will
|
|
|
|
# generate an error an error if the DOWNLOAD command is not defined.
|
2011-03-08 08:27:35 +08:00
|
|
|
|
|
|
|
download: $(BIN)
|
2011-03-09 11:41:34 +08:00
|
|
|
$(call DOWNLOAD, $<)
|
2011-03-08 08:27:35 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# pass1dep: Create pass1 build dependencies
|
|
|
|
# pass2dep: Create pass2 build dependencies
|
|
|
|
|
2016-01-10 07:27:56 +08:00
|
|
|
pass1dep: context tools/mkdeps$(HOSTEXEEXT) tools/cnvwindeps$(HOSTEXEEXT)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(USERDEPDIRS) ; do \
|
2008-01-08 21:02:47 +08:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" depend ; \
|
2007-02-18 07:21:28 +08:00
|
|
|
done
|
|
|
|
|
2016-01-10 07:27:56 +08:00
|
|
|
pass2dep: context tools/mkdeps$(HOSTEXEEXT) tools/cnvwindeps$(HOSTEXEEXT)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(KERNDEPDIRS) ; do \
|
2011-04-04 02:42:33 +08:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" EXTRADEFINES=$(KDEFINE) depend; \
|
2011-04-04 00:43:35 +08:00
|
|
|
done
|
|
|
|
|
2012-04-13 22:27:44 +08:00
|
|
|
# Configuration targets
|
|
|
|
#
|
|
|
|
# These targets depend on the kconfig-frontends packages. To use these, you
|
|
|
|
# must first download and install the kconfig-frontends package from this
|
2019-09-24 23:52:09 +08:00
|
|
|
# location: https://bitbucket.org/nuttx/tools/downloads/. See README.txt
|
|
|
|
# file in the NuttX tools GIT repository for additional information.
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2016-07-29 00:36:28 +08:00
|
|
|
do_config: dirlinks apps_preconfig
|
2013-01-09 20:55:13 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-conf Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
config: do_config clean_context
|
|
|
|
|
2016-07-29 00:36:28 +08:00
|
|
|
do_oldconfig: dirlinks apps_preconfig
|
2013-01-09 20:55:13 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-conf --oldconfig Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
oldconfig: do_oldconfig clean_context
|
|
|
|
|
2016-07-29 00:36:28 +08:00
|
|
|
do_olddefconfig: dirlinks apps_preconfig
|
2016-03-09 06:50:58 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-conf --olddefconfig Kconfig
|
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
olddefconfig: do_olddefconfig clean_context
|
|
|
|
|
2016-07-29 00:36:28 +08:00
|
|
|
do_menuconfig: dirlinks apps_preconfig
|
2013-01-09 20:55:13 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-mconf Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
menuconfig: do_menuconfig clean_context
|
|
|
|
|
2018-04-23 00:20:29 +08:00
|
|
|
do_nconfig: dirlinks apps_preconfig
|
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-nconf Kconfig
|
|
|
|
|
|
|
|
nconfig: do_nconfig clean_context
|
|
|
|
|
2016-07-29 00:36:28 +08:00
|
|
|
do_qconfig: dirlinks apps_preconfig
|
2013-11-17 02:59:59 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-qconf Kconfig
|
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
qconfig: do_qconfig clean_context
|
|
|
|
|
2017-04-05 18:53:54 +08:00
|
|
|
do_gconfig: dirlinks apps_preconfig
|
2013-11-17 02:59:59 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-gconf Kconfig
|
|
|
|
|
2016-06-29 02:40:17 +08:00
|
|
|
gconfig: do_gconfig clean_context
|
|
|
|
|
2017-07-08 20:19:29 +08:00
|
|
|
do_savedefconfig: dirlinks apps_preconfig
|
|
|
|
|
|
|
|
savedefconfig: do_savedefconfig
|
2017-07-10 08:24:03 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} kconfig-conf --savedefconfig defconfig.tmp Kconfig
|
|
|
|
$(Q) sed -i -e "/CONFIG_APPS_DIR=/d" defconfig.tmp
|
|
|
|
$(Q) grep "CONFIG_ARCH=" .config >> defconfig.tmp
|
2018-03-08 03:37:53 +08:00
|
|
|
$(Q) grep "^CONFIG_ARCH_CHIP_" .config >> defconfig.tmp; true
|
2019-08-08 04:49:39 +08:00
|
|
|
$(Q) grep "^CONFIG_ARCH_CHIP=" .config >> defconfig.tmp; true
|
2018-03-08 03:37:53 +08:00
|
|
|
$(Q) grep "CONFIG_ARCH_BOARD=" .config && grep "CONFIG_ARCH_BOARD=" .config >> defconfig.tmp; true
|
|
|
|
$(Q) grep "^CONFIG_ARCH_CUSTOM" .config && grep "^CONFIG_ARCH_CUSTOM" .config >> defconfig.tmp; true
|
2019-08-22 20:01:26 +08:00
|
|
|
$(Q) grep "^CONFIG_ARCH_BOARD_CUSTOM=" .config && grep "^CONFIG_ARCH_BOARD_CUSTOM" .config >> defconfig.tmp; true
|
2019-03-03 22:30:14 +08:00
|
|
|
$(Q) export LC_ALL=C; cat defconfig.tmp | sort | uniq > sortedconfig.tmp
|
|
|
|
$(Q) echo "#" > warning.tmp
|
|
|
|
$(Q) echo "# This file is autogenerated: PLEASE DO NOT EDIT IT." >> warning.tmp
|
|
|
|
$(Q) echo "#" >> warning.tmp
|
|
|
|
$(Q) echo "# You can use \"make menuconfig\" to make any modifications to the installed .config file." >> warning.tmp
|
|
|
|
$(Q) echo "# You can then do \"make savedefconfig\" to generate a new defconfig file that includes your" >> warning.tmp
|
|
|
|
$(Q) echo "# modifications." >> warning.tmp
|
|
|
|
$(Q) echo "#" >> warning.tmp
|
|
|
|
$(Q) cat warning.tmp sortedconfig.tmp > defconfig
|
|
|
|
$(Q) rm -f warning.tmp
|
2017-07-10 08:24:03 +08:00
|
|
|
$(Q) rm -f defconfig.tmp
|
2019-03-03 22:30:14 +08:00
|
|
|
$(Q) rm -f sortedconfig.tmp
|
2017-07-08 20:19:29 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# export
|
|
|
|
#
|
2011-07-12 06:52:51 +08:00
|
|
|
# The export target will package the NuttX libraries and header files into
|
2011-07-12 11:21:27 +08:00
|
|
|
# an exportable package. Caveats: (1) These needs some extension for the KERNEL
|
|
|
|
# build; it needs to receive USERLIBS and create a libuser.a). (2) The logic
|
|
|
|
# in tools/mkexport.sh only supports GCC and, for example, explicitly assumes
|
|
|
|
# that the archiver is 'ar'
|
2011-07-12 06:52:51 +08:00
|
|
|
|
|
|
|
export: pass2deps
|
2016-05-05 17:40:16 +08:00
|
|
|
$(Q) MAKE=${MAKE} $(MKEXPORT) $(MKEXPORT_ARGS) -l "$(EXPORTLIBS)"
|
2011-07-12 06:52:51 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# General housekeeping targets: dependencies, cleaning, etc.
|
|
|
|
#
|
|
|
|
# depend: Create both PASS1 and PASS2 dependencies
|
|
|
|
# clean: Removes derived object files, archives, executables, and
|
|
|
|
# temporary files, but retains the configuration and context
|
|
|
|
# files and directories.
|
|
|
|
# distclean: Does 'clean' then also removes all configuration and context
|
|
|
|
# files. This essentially restores the directory structure
|
|
|
|
# to its original, unconfigured stated.
|
2011-07-12 06:52:51 +08:00
|
|
|
|
2011-04-04 00:43:35 +08:00
|
|
|
depend: pass1dep pass2dep
|
|
|
|
|
2007-03-27 06:14:28 +08:00
|
|
|
subdir_clean:
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(CLEANDIRS) ; do \
|
2007-03-27 06:14:28 +08:00
|
|
|
if [ -e $$dir/Makefile ]; then \
|
2008-01-08 21:02:47 +08:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" clean ; \
|
2007-03-27 06:14:28 +08:00
|
|
|
fi \
|
2007-02-18 07:21:28 +08:00
|
|
|
done
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host TOPDIR="$(TOPDIR)" clean
|
2010-08-28 10:30:50 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) TOPDIR="$(TOPDIR)" clean
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
2007-03-27 06:14:28 +08:00
|
|
|
|
2009-05-29 07:14:27 +08:00
|
|
|
clean: subdir_clean
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, $(BIN))
|
|
|
|
$(call DELFILE, nuttx.*)
|
|
|
|
$(call DELFILE, *.map)
|
|
|
|
$(call DELFILE, _SAVED_APPS_config)
|
2018-09-05 03:19:17 +08:00
|
|
|
$(call DELFILE, nuttx-export*.zip)
|
|
|
|
$(call DELDIR, nuttx-export*)
|
2013-03-13 05:53:18 +08:00
|
|
|
$(call DELFILE, nuttx_user*)
|
2018-11-06 21:37:02 +08:00
|
|
|
$(call DELDIR, staging)
|
2012-11-18 02:54:53 +08:00
|
|
|
$(call CLEAN)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2007-03-27 06:14:28 +08:00
|
|
|
subdir_distclean:
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(CLEANDIRS) ; do \
|
2007-03-27 06:14:28 +08:00
|
|
|
if [ -e $$dir/Makefile ]; then \
|
2008-01-08 21:02:47 +08:00
|
|
|
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" distclean ; \
|
2007-03-27 06:14:28 +08:00
|
|
|
fi \
|
2007-02-18 07:21:28 +08:00
|
|
|
done
|
2007-03-27 06:14:28 +08:00
|
|
|
|
2009-05-29 07:14:27 +08:00
|
|
|
distclean: clean subdir_distclean clean_context
|
2010-08-28 10:30:50 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) TOPDIR="$(TOPDIR)" distclean
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
2019-09-16 00:56:26 +08:00
|
|
|
$(call DELFILE, include/nuttx/config.h)
|
|
|
|
$(call DELFILE, include/nuttx/version.h)
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, Make.defs)
|
|
|
|
$(call DELFILE, .config)
|
|
|
|
$(call DELFILE, .config.old)
|
2018-01-02 21:35:26 +08:00
|
|
|
$(call DELFILE, .gdbinit)
|
2020-01-21 15:51:05 +08:00
|
|
|
$(Q) $(DIRUNLINK) include/arch/board
|
|
|
|
$(Q) $(DIRUNLINK) include/arch/chip
|
|
|
|
$(Q) $(DIRUNLINK) include/arch
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)/board/board
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)/board
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)/chip
|
|
|
|
$(Q) $(DIRUNLINK) $(TOPDIR)/drivers/platform
|
2011-03-21 03:30:39 +08:00
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
# Application housekeeping targets. The APPDIR variable refers to the user
|
|
|
|
# application directory. A sample apps/ directory is included with NuttX,
|
|
|
|
# however, this is not treated as part of NuttX and may be replaced with a
|
|
|
|
# different application directory. For the most part, the application
|
|
|
|
# directory is treated like any other build directory in this script. However,
|
|
|
|
# as a convenience, the following targets are included to support housekeeping
|
|
|
|
# functions in the user application directory from the NuttX build directory.
|
|
|
|
#
|
2015-08-12 07:35:00 +08:00
|
|
|
# apps_preconfig: Prepare applications to be configured
|
2012-01-01 00:53:05 +08:00
|
|
|
# apps_clean: Perform the clean operation only in the user application
|
|
|
|
# directory
|
|
|
|
# apps_distclean: Perform the distclean operation only in the user application
|
2014-03-07 03:00:50 +08:00
|
|
|
# directory.
|
2012-01-01 00:53:05 +08:00
|
|
|
|
2015-08-12 07:35:00 +08:00
|
|
|
apps_preconfig:
|
|
|
|
ifneq ($(APPDIR),)
|
|
|
|
$(Q) $(MAKE) -C "$(TOPDIR)/$(APPDIR)" TOPDIR="$(TOPDIR)" preconfig
|
|
|
|
endif
|
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
apps_clean:
|
|
|
|
ifneq ($(APPDIR),)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(MAKE) -C "$(TOPDIR)/$(APPDIR)" TOPDIR="$(TOPDIR)" clean
|
2012-01-01 00:53:05 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
apps_distclean:
|
|
|
|
ifneq ($(APPDIR),)
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) $(MAKE) -C "$(TOPDIR)/$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
|
2012-01-01 00:53:05 +08:00
|
|
|
endif
|