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
|
|
|
#
|
2020-05-30 05:50:47 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2007-02-18 07:21:28 +08:00
|
|
|
#
|
2020-05-30 05:50:47 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
#
|
2020-05-30 05:50:47 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2007-02-18 07:21:28 +08:00
|
|
|
#
|
2008-01-10 06:53:52 +08:00
|
|
|
############################################################################
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-09-15 00:53:37 +08:00
|
|
|
export TOPDIR := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
|
2020-05-19 03:42:11 +08:00
|
|
|
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,)
|
|
|
|
|
2020-06-18 04:12:54 +08:00
|
|
|
ifeq ($(GIT_DIR),y)
|
|
|
|
GIT_PRESENT = `git rev-parse --git-dir 2> /dev/null`
|
|
|
|
endif
|
|
|
|
|
2019-12-14 02:43:44 +08:00
|
|
|
# In case we cannot get version information from GIT
|
|
|
|
|
2020-06-30 11:12:01 +08:00
|
|
|
ifeq ($(GIT_PRESENT),)
|
2019-12-14 02:43:44 +08:00
|
|
|
-include $(TOPDIR)/.version
|
|
|
|
|
|
|
|
# In case the version file does not exist
|
2019-12-14 02:34:17 +08:00
|
|
|
|
2020-04-19 02:47:04 +08:00
|
|
|
CONFIG_VERSION_STRING ?= "0.0.0"
|
2019-12-14 02:34:17 +08:00
|
|
|
CONFIG_VERSION_BUILD ?= "0"
|
|
|
|
|
2019-12-14 02:43:44 +08:00
|
|
|
VERSION_ARG = -v $(CONFIG_VERSION_STRING) -b $(CONFIG_VERSION_BUILD)
|
2020-03-19 21:40:32 +08:00
|
|
|
else
|
|
|
|
|
|
|
|
# Generate .version every time from GIT history
|
|
|
|
|
|
|
|
.PHONY: $(TOPDIR)/.version
|
2019-12-14 02:43:44 +08:00
|
|
|
endif
|
|
|
|
|
2020-05-21 03:41:57 +08:00
|
|
|
# Process architecture specific directories
|
2007-06-10 03:11:00 +08:00
|
|
|
|
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
|
|
|
|
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
|
2020-05-22 08:36:20 +08:00
|
|
|
APPDIR := $(realpath ${shell if [ -r $(CONFIG_APPS_DIR)/Makefile ]; then echo "$(CONFIG_APPS_DIR)"; fi})
|
2011-03-22 05:59:35 +08:00
|
|
|
|
2020-09-15 03:51:31 +08:00
|
|
|
# External code support
|
|
|
|
# If external/ contains a Kconfig, we define the EXTERNALDIR variable to 'external'
|
|
|
|
# so that main Kconfig can find it. Otherwise, we redirect it to a dummy Kconfig
|
|
|
|
# This is due to kconfig inability to do conditional inclusion.
|
|
|
|
|
2020-10-19 10:58:39 +08:00
|
|
|
EXTERNALDIR := $(shell if [ -r $(TOPDIR)/external/Kconfig ]; then echo 'external'; else echo 'dummy'; fi)
|
2020-09-15 03:51:31 +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
|
2020-03-19 21:40:32 +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
|
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
|
2020-09-04 23:33:45 +08:00
|
|
|
MKEXPORT_ARGS = -t "$(TOPDIR)" -b "$(BOARD_DIR)"
|
2014-09-05 02:19:47 +08:00
|
|
|
|
2020-04-30 03:21:23 +08:00
|
|
|
ifneq ($(CONFIG_BUILD_FLAT),y)
|
2018-08-24 01:08:22 +08:00
|
|
|
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
|
|
|
|
2021-02-05 05:41:01 +08:00
|
|
|
BIN = nuttx$(EXEEXT)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2019-08-26 23:46:05 +08:00
|
|
|
all: $(BIN)
|
2020-05-19 03:42:11 +08:00
|
|
|
.PHONY: dirlinks context clean_context config oldconfig menuconfig nconfig qconfig gconfig export subdir_clean clean subdir_distclean distclean apps_clean apps_distclean
|
2020-04-03 20:19:15 +08:00
|
|
|
.PHONY: pass1 pass1dep
|
|
|
|
.PHONY: pass2 pass2dep
|
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
|
2020-03-19 21:40:32 +08:00
|
|
|
else ifeq ($(CONFIG_LIBM),y)
|
2012-10-29 02:42:09 +08:00
|
|
|
NEED_MATH_H = y
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NEED_MATH_H),y)
|
2020-05-18 15:30:40 +08:00
|
|
|
include/math.h: include/nuttx/lib/math.h .clean_context
|
|
|
|
$(Q) cp -f 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)
|
2020-05-18 15:30:40 +08:00
|
|
|
include/float.h: include/nuttx/lib/float.h .clean_context
|
|
|
|
$(Q) cp -f 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)
|
2020-05-18 15:30:40 +08:00
|
|
|
include/stdarg.h: include/nuttx/lib/stdarg.h .clean_context
|
|
|
|
$(Q) cp -f 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)
|
2020-05-18 15:30:40 +08:00
|
|
|
include/setjmp.h: include/nuttx/lib/setjmp.h .clean_context
|
|
|
|
$(Q) cp -f 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):
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host 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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
include/nuttx/version.h: $(TOPDIR)/.version tools/mkversion$(HOSTEXEEXT) .clean_context
|
2019-09-07 22:44:16 +08:00
|
|
|
$(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):
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host mkconfig$(HOSTEXEEXT)
|
2018-05-30 03:21:26 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
include/nuttx/config.h: $(TOPDIR)/.config tools/mkconfig$(HOSTEXEEXT) .clean_context
|
2020-03-19 21:40:32 +08:00
|
|
|
$(Q) tools/mkconfig $(TOPDIR) > $@.tmp
|
|
|
|
$(Q) $(call TESTANDREPLACEFILE, $@.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):
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host mkdeps$(HOSTEXEEXT)
|
2016-01-10 07:27:56 +08:00
|
|
|
|
|
|
|
tools/cnvwindeps$(HOSTEXEEXT):
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host 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
|
|
|
|
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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
include/arch: .clean_context
|
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
|
2020-05-18 15:30:40 +08:00
|
|
|
$(Q) touch $@
|
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
|
2020-05-21 03:41:57 +08:00
|
|
|
@echo "LN: include/arch/board to $(BOARD_DIR)/include"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/include include/arch/board
|
2020-05-18 15:30:40 +08:00
|
|
|
$(Q) touch $@
|
2007-03-27 00:47:17 +08:00
|
|
|
|
2020-05-21 03:41:57 +08:00
|
|
|
ifneq ($(BOARD_COMMON_DIR),)
|
2019-08-22 01:25:16 +08:00
|
|
|
# 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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
$(ARCH_SRC)/board: .clean_context
|
2020-05-21 03:41:57 +08:00
|
|
|
@echo "LN: $(ARCH_SRC)/board to $(BOARD_COMMON_DIR)"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_COMMON_DIR) $(ARCH_SRC)/board
|
|
|
|
@echo "LN: $(ARCH_SRC)/board/board to $(BOARD_DIR)/src"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/src $(ARCH_SRC)/board/board
|
2020-05-18 15:30:40 +08:00
|
|
|
$(Q) touch $@
|
2019-08-22 01:25:16 +08:00
|
|
|
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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
$(ARCH_SRC)/board: .clean_context
|
2020-05-21 03:41:57 +08:00
|
|
|
@echo "LN: $(ARCH_SRC)/board to $(BOARD_DIR)/src"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DIR)/src $(ARCH_SRC)/board
|
2020-05-18 15:30:40 +08:00
|
|
|
$(Q) touch $@
|
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
|
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
drivers/platform: .clean_context
|
2020-05-21 03:41:57 +08:00
|
|
|
@echo "LN: $(TOPDIR)/drivers/platform to $(BOARD_DRIVERS_DIR)"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DRIVERS_DIR) $(TOPDIR)/drivers/platform
|
2020-05-18 15:30:40 +08:00
|
|
|
$(Q) touch $@
|
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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
$(ARCH_SRC)/chip: .clean_context
|
2020-10-15 11:29:59 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_CUSTOM),y)
|
|
|
|
@echo "LN: $(ARCH_SRC)/chip to $(CHIP_DIR)"
|
|
|
|
$(Q) $(DIRLINK) $(CHIP_DIR) $(ARCH_SRC)/chip
|
|
|
|
else 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
|
2020-10-15 11:29:59 +08:00
|
|
|
$(Q) cp -f $(CHIP_KCONFIG) $(TOPDIR)/arch/dummy/Kconfig
|
|
|
|
$(Q) touch $@
|
2007-04-25 08:09:44 +08:00
|
|
|
|
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
|
2020-10-15 11:29:59 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_CUSTOM),y)
|
|
|
|
@echo "LN: include/arch/chip to $(CHIP_DIR)/include"
|
|
|
|
$(Q) $(DIRLINK) $(CHIP_DIR)/include include/arch/chip
|
|
|
|
else 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
|
2020-10-15 11:29:59 +08:00
|
|
|
$(Q) touch $@
|
2007-04-25 08:09:44 +08:00
|
|
|
|
2020-03-19 21:40:32 +08:00
|
|
|
dirlinks: include/arch include/arch/board include/arch/chip $(ARCH_SRC)/board $(ARCH_SRC)/chip drivers/platform
|
2020-11-28 11:43:30 +08:00
|
|
|
$(Q) $(MAKE) -C libs/libxx dirlinks
|
|
|
|
$(Q) $(MAKE) -C boards dirlinks
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C openamp dirlinks
|
2020-11-28 11:43:30 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_APPS_DIR) dirlinks
|
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.
|
|
|
|
|
2020-05-19 03:42:11 +08:00
|
|
|
context: include/nuttx/config.h include/nuttx/version.h include/math.h include/float.h include/stdarg.h include/setjmp.h dirlinks
|
2020-03-19 21:40:32 +08:00
|
|
|
$(Q) mkdir -p staging
|
2012-11-10 06:37:52 +08:00
|
|
|
$(Q) for dir in $(CONTEXTDIRS) ; do \
|
2020-09-15 00:53:37 +08:00
|
|
|
$(MAKE) -C $$dir context || exit; \
|
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 \
|
2020-09-15 00:53:37 +08:00
|
|
|
$(MAKE) -C $$dir clean_context ; \
|
2019-12-03 20:38:53 +08:00
|
|
|
fi \
|
|
|
|
done
|
2020-05-18 15:30:40 +08:00
|
|
|
$(call DELFILE, include/nuttx/config.h)
|
|
|
|
$(call DELFILE, include/nuttx/version.h)
|
2020-04-26 01:08:13 +08:00
|
|
|
$(call DELFILE, include/float.h)
|
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)
|
2020-10-15 11:29:59 +08:00
|
|
|
$(call DELFILE, arch/dummy/Kconfig)
|
2020-09-27 16:58:14 +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
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
.clean_context: .config
|
|
|
|
+$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) touch $@
|
|
|
|
|
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
|
2020-03-29 01:04:23 +08:00
|
|
|
# configured to be built before the pass2 target. This pass1 target may, as an
|
2011-04-03 22:26:05 +08:00
|
|
|
# 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
|
|
|
|
2020-05-31 21:07:31 +08:00
|
|
|
pass1: $(USERLIBS)
|
2020-05-27 17:50:52 +08:00
|
|
|
|
2020-05-31 21:07:31 +08:00
|
|
|
pass2: $(NUTTXLIBS)
|
2020-05-27 17:50:52 +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
|
|
|
|
# and pass2 targets are built. However, in some cases, you may need to build
|
|
|
|
# pass1 dependencies and pass1 first, then build pass2 dependencies and pass2.
|
|
|
|
# in that case, execute 'make pass1 pass2' from the command line.
|
|
|
|
|
|
|
|
$(BIN): pass1 pass2
|
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
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) LINKLIBS="$(LINKLIBS)" USERLIBS="$(USERLIBS)" "$(CONFIG_PASS1_TARGET)"
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(ARCH_SRC) EXTRA_OBJS="$(EXTRA_OBJS)" LINKLIBS="$(LINKLIBS)" EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)" $(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
|
2021-02-05 05:41:01 +08:00
|
|
|
$(Q) echo $(BIN) > nuttx.manifest
|
|
|
|
$(Q) printf "%s\n" *.map >> nuttx.manifest
|
2008-09-17 05:45:41 +08:00
|
|
|
ifeq ($(CONFIG_INTELHEX_BINARY),y)
|
2021-02-05 05:41:01 +08:00
|
|
|
@echo "CP: nuttx.hex"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O ihex $(BIN) nuttx.hex
|
|
|
|
$(Q) echo nuttx.hex >> nuttx.manifest
|
2008-09-17 05:45:41 +08:00
|
|
|
endif
|
2008-11-06 06:16:22 +08:00
|
|
|
ifeq ($(CONFIG_MOTOROLA_SREC),y)
|
2021-02-05 05:41:01 +08:00
|
|
|
@echo "CP: nuttx.srec"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O srec $(BIN) nuttx.srec
|
|
|
|
$(Q) echo nuttx.srec >> nuttx.manifest
|
2008-11-06 06:16:22 +08:00
|
|
|
endif
|
2008-09-18 07:14:42 +08:00
|
|
|
ifeq ($(CONFIG_RAW_BINARY),y)
|
2021-02-05 05:41:01 +08:00
|
|
|
@echo "CP: nuttx.bin"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O binary $(BIN) nuttx.bin
|
|
|
|
$(Q) echo nuttx.bin >> nuttx.manifest
|
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) \
|
2021-02-05 05:41:01 +08:00
|
|
|
-e $(CONFIG_UIMAGE_ENTRY_POINT) -n $(BIN) -d nuttx.bin uImage
|
2014-04-02 01:56:58 +08:00
|
|
|
$(Q) if [ -w /tftpboot ] ; then \
|
|
|
|
cp -f uImage /tftpboot/uImage; \
|
|
|
|
fi
|
2021-02-05 05:41:01 +08:00
|
|
|
$(Q) echo "uImage" >> nuttx.manifest
|
2014-04-02 01:56:58 +08:00
|
|
|
endif
|
2020-07-01 11:34:44 +08:00
|
|
|
$(call POSTBUILD, $(TOPDIR))
|
2007-02-18 07:21:28 +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
|
2020-03-29 01:04:23 +08:00
|
|
|
# generate 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 \
|
2020-09-15 00:53:37 +08:00
|
|
|
$(MAKE) -C $$dir depend || exit; \
|
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 \
|
2020-09-15 00:53:37 +08:00
|
|
|
$(MAKE) -C $$dir EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)" depend || exit; \
|
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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
config: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-conf Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
oldconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-conf --oldconfig Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
olddefconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-conf --olddefconfig Kconfig
|
2016-03-09 06:50:58 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
menuconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-mconf Kconfig
|
2012-04-13 22:27:44 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
nconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-nconf Kconfig
|
2018-04-23 00:20:29 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
qconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-qconf Kconfig
|
2013-11-17 02:59:59 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
gconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-gconf Kconfig
|
2013-11-17 02:59:59 +08:00
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
savedefconfig: apps_preconfig
|
2020-09-15 03:51:31 +08:00
|
|
|
$(Q) APPSDIR=${CONFIG_APPS_DIR} EXTERNALDIR=$(EXTERNALDIR) kconfig-conf --savedefconfig defconfig.tmp Kconfig
|
2021-01-05 12:29:08 +08:00
|
|
|
$(Q) kconfig-tweak --file defconfig.tmp -u CONFIG_APPS_DIR
|
2017-07-10 08:24:03 +08:00
|
|
|
$(Q) grep "CONFIG_ARCH=" .config >> defconfig.tmp
|
2018-03-08 03:37:53 +08:00
|
|
|
$(Q) grep "^CONFIG_ARCH_CHIP_" .config >> defconfig.tmp; true
|
2020-03-19 21:40:32 +08:00
|
|
|
$(Q) grep "CONFIG_ARCH_CHIP=" .config >> defconfig.tmp; true
|
|
|
|
$(Q) grep "CONFIG_ARCH_BOARD=" .config >> defconfig.tmp; true
|
|
|
|
$(Q) grep "^CONFIG_ARCH_CUSTOM" .config >> defconfig.tmp; true
|
|
|
|
$(Q) 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
|
|
|
|
2020-04-03 20:19:15 +08:00
|
|
|
export: $(NUTTXLIBS)
|
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
|
|
|
|
|
2020-05-22 08:36:20 +08:00
|
|
|
$(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
|
|
|
|
|
|
|
|
subdir_clean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_clean)
|
2010-08-28 10:30:50 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) 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)
|
2020-04-26 01:08:13 +08:00
|
|
|
$(call DELFILE, uImage)
|
2012-11-18 02:54:53 +08:00
|
|
|
$(call CLEAN)
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-05-22 08:36:20 +08:00
|
|
|
$(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
|
|
|
|
|
|
|
|
subdir_distclean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_distclean)
|
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)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) distclean
|
2010-08-28 10:30:50 +08:00
|
|
|
endif
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, Make.defs)
|
2020-03-20 02:09:45 +08:00
|
|
|
$(call DELFILE, defconfig)
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, .config)
|
|
|
|
$(call DELFILE, .config.old)
|
2018-01-02 21:35:26 +08:00
|
|
|
$(call DELFILE, .gdbinit)
|
2020-05-18 15:30:40 +08:00
|
|
|
$(call DELFILE, .clean_context)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host clean
|
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
|
|
|
|
2020-05-18 15:30:40 +08:00
|
|
|
apps_preconfig: dirlinks
|
2015-08-12 07:35:00 +08:00
|
|
|
ifneq ($(APPDIR),)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(APPDIR) preconfig
|
2015-08-12 07:35:00 +08:00
|
|
|
endif
|
|
|
|
|
2012-01-01 00:53:05 +08:00
|
|
|
apps_clean:
|
|
|
|
ifneq ($(APPDIR),)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(APPDIR) clean
|
2012-01-01 00:53:05 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
apps_distclean:
|
|
|
|
ifneq ($(APPDIR),)
|
2020-09-15 00:53:37 +08:00
|
|
|
$(Q) $(MAKE) -C $(APPDIR) distclean
|
2012-01-01 00:53:05 +08:00
|
|
|
endif
|