2012-11-11 19:36:28 +01:00
|
|
|
############################################################################
|
2022-01-04 22:06:58 +01:00
|
|
|
# tools/Win.mk
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
2024-09-10 14:15:58 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2020-05-29 23:50:47 +02: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
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
2020-05-29 23:50:47 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
2020-05-29 23:50:47 +02: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.
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2018-11-06 13:34:00 +01:00
|
|
|
export SHELL=cmd
|
|
|
|
|
2020-09-14 18:53:37 +02:00
|
|
|
export TOPDIR := ${shell echo %CD%}
|
2022-11-05 11:19:01 +01:00
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)\Make.defs
|
2020-03-19 14:40:32 +01:00
|
|
|
-include $(TOPDIR)\.version
|
|
|
|
|
2019-12-13 19:34:17 +01:00
|
|
|
# In case .version file does not exist
|
|
|
|
|
2020-04-18 20:47:04 +02:00
|
|
|
CONFIG_VERSION_STRING ?= "0.0.0"
|
2019-12-13 19:34:17 +01:00
|
|
|
CONFIG_VERSION_MAJOR ?= 0
|
|
|
|
CONFIG_VERSION_MINOR ?= 0
|
2020-04-18 20:47:04 +02:00
|
|
|
CONFIG_VERSION_PATCH ?= 0
|
2019-12-13 19:34:17 +01:00
|
|
|
CONFIG_VERSION_BUILD ?= "0"
|
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# Process architecture and board-specific directories
|
|
|
|
|
|
|
|
ARCH_DIR = arch\$(CONFIG_ARCH)
|
|
|
|
ARCH_SRC = $(ARCH_DIR)\src
|
|
|
|
ARCH_INC = $(ARCH_DIR)\include
|
2014-01-16 17:42:54 +01:00
|
|
|
|
2012-11-11 19:36:28 +01: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
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_APPS_DIR),)
|
|
|
|
CONFIG_APPS_DIR = ..\apps
|
2023-05-17 07:28:48 +02:00
|
|
|
else
|
|
|
|
CONFIG_APPS_DIR := $(patsubst "%",%,$(CONFIG_APPS_DIR))
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
2020-05-22 02:36:20 +02:00
|
|
|
APPDIR := $(realpath ${shell if exist "$(CONFIG_APPS_DIR)\Makefile" echo $(CONFIG_APPS_DIR)})
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-09-14 21:51:31 +02: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.
|
|
|
|
|
2022-11-05 11:19:01 +01:00
|
|
|
EXTERNALDIR := ${shell if exist "$(TOPDIR)\external\Kconfig" (echo external) else (echo dummy)}
|
2020-09-14 21:51:31 +02:00
|
|
|
|
2012-11-11 19:36:28 +01: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 13:38:53 +01: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.
|
2012-11-11 19:36:28 +01:00
|
|
|
# KERNDEPDIRS are the directories in which we will build target dependencies.
|
2014-08-30 18:07:39 +02: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-29 22:47:22 +02:00
|
|
|
# USERDEPDIRS. If NuttX and applications are built separately (CONFIG_BUILD_PROTECTED),
|
2014-08-30 18:07:39 +02:00
|
|
|
# then this holds only the directories containing user files. If
|
|
|
|
# CONFIG_BUILD_KERNEL is selected, then applications are not build at all.
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2018-05-29 20:14:55 +02:00
|
|
|
include tools\Directories.mk
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
|
|
|
# Extra objects used in the final link.
|
|
|
|
#
|
2018-07-09 02:24:45 +02:00
|
|
|
# Pass 1 Incremental (relative) link objects should be put into the
|
2012-11-11 19:36:28 +01:00
|
|
|
# processor-specific source directory (where other link objects will
|
2014-01-31 02:00:23 +01:00
|
|
|
# be created). If the pass1 object is an archive, it could go anywhere.
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
|
|
|
EXTRA_OBJS += $(CONFIG_PASS1_OBJECT)
|
|
|
|
endif
|
|
|
|
|
2014-08-30 18:07:39 +02:00
|
|
|
# Library build selections
|
2014-09-04 19:43:41 +02: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
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2014-08-30 18:43:58 +02:00
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
2018-05-29 20:14:55 +02:00
|
|
|
include tools\ProtectedLibs.mk
|
2020-03-19 14:40:32 +01:00
|
|
|
else ifeq ($(CONFIG_BUILD_KERNEL),y)
|
2018-05-29 20:14:55 +02:00
|
|
|
include tools\KernelLibs.mk
|
2014-08-30 18:43:58 +02:00
|
|
|
else
|
2018-05-29 20:14:55 +02:00
|
|
|
include tools\FlatLibs.mk
|
2014-08-30 18:43:58 +02:00
|
|
|
endif
|
2013-05-19 23:12:28 +02:00
|
|
|
|
2014-08-30 18:07:39 +02:00
|
|
|
# LINKLIBS derives from NUTTXLIBS and is simply the same list with the
|
2014-09-04 19:43:41 +02:00
|
|
|
# subdirectory removed
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2018-05-29 19:36:21 +02:00
|
|
|
LINKLIBS = $(patsubst staging\\%,%,$(NUTTXLIBS))
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2014-09-04 20:19:47 +02:00
|
|
|
# Export tool definitions
|
|
|
|
|
|
|
|
MKEXPORT = tools\mkexport.bat
|
2020-09-04 17:33:45 +02:00
|
|
|
MKEXPORT_ARGS = -t "$(TOPDIR)"
|
2014-09-04 20:19:47 +02:00
|
|
|
|
2020-04-29 21:21:23 +02:00
|
|
|
ifneq ($(CONFIG_BUILD_FLAT),y)
|
2018-08-23 19:08:22 +02:00
|
|
|
MKEXPORT_ARGS += -u
|
2014-09-04 20:19:47 +02:00
|
|
|
endif
|
|
|
|
|
2019-08-30 15:19:15 +02:00
|
|
|
ifneq ($(APPDIR),)
|
2022-11-09 19:37:03 +01:00
|
|
|
ifneq ($(shell if exist "$(APPDIR)/Makefile" echo yes),)
|
2019-08-30 15:19:15 +02:00
|
|
|
MKEXPORT_ARGS += -a "$(APPDIR)"
|
|
|
|
MKEXPORT_ARGS += -m "$(MAKE)"
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-09-04 20:35:47 +02:00
|
|
|
ifeq ($(V),2)
|
|
|
|
MKEXPORT_ARGS += -d
|
|
|
|
endif
|
|
|
|
|
2020-02-23 09:50:23 +01:00
|
|
|
# This is the name of the final target (relative to the top level directory)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-02-04 22:41:01 +01:00
|
|
|
BIN = nuttx$(EXEEXT)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
all: $(BIN)
|
2022-01-04 16:46:26 +01:00
|
|
|
.PHONY: context clean_context config oldconfig menuconfig nconfig export subdir_clean clean subdir_distclean distclean apps_clean apps_distclean
|
2020-04-03 14:19:15 +02:00
|
|
|
.PHONY: pass1 pass1dep
|
|
|
|
.PHONY: pass2 pass2dep
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
# Target used to copy include\nuttx\math.h. If CONFIG_ARCH_MATH_H is
|
|
|
|
# defined, then there is an architecture specific math.h header file
|
|
|
|
# that will be included indirectly from include\math.h. But first, we
|
|
|
|
# have to copy math.h from include\nuttx\. to include\. Logic within
|
|
|
|
# include\nuttx\math.h will hand the redirection to the architecture-
|
|
|
|
# specific math.h header file.
|
|
|
|
#
|
2023-02-17 22:21:13 +01:00
|
|
|
# If the CONFIG_LIBM is defined, the Rhombus libm will be built at libm\libm.
|
2012-11-11 19:36:28 +01:00
|
|
|
# Definitions and prototypes for the Rhombus libm are also contained in
|
|
|
|
# include\nuttx\math.h and so the file must also be copied in that case.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_MATH_H),y)
|
|
|
|
NEED_MATH_H = y
|
2020-03-19 14:40:32 +01:00
|
|
|
else ifeq ($(CONFIG_LIBM),y)
|
2012-11-11 19:36:28 +01:00
|
|
|
NEED_MATH_H = y
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NEED_MATH_H),y)
|
2022-11-09 01:56:52 +01:00
|
|
|
include\math.h: include\nuttx\lib\math.h
|
|
|
|
$(Q) cp -f include\nuttx\lib\math.h include\math.h
|
2012-11-11 19:36:28 +01:00
|
|
|
else
|
|
|
|
include\math.h:
|
|
|
|
endif
|
|
|
|
|
|
|
|
# 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 02:00:23 +01:00
|
|
|
# header file but if none is available, a default float.h header file will
|
2012-11-11 19:36:28 +01: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)
|
2022-11-09 01:56:52 +01:00
|
|
|
include\float.h: include\nuttx\lib\float.h
|
|
|
|
$(Q) cp -f include\nuttx\lib\float.h include\float.h
|
2012-11-11 19:36:28 +01:00
|
|
|
else
|
|
|
|
include\float.h:
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Target used to copy include\nuttx\stdarg.h. If CONFIG_ARCH_STDARG_H is
|
|
|
|
# defined, then there is an architecture specific stdarg.h header file
|
|
|
|
# that will be included indirectly from include\stdarg.h. But first, we
|
|
|
|
# have to copy stdarg.h from include\nuttx\. to include\.
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_STDARG_H),y)
|
2022-11-09 01:56:52 +01:00
|
|
|
include\stdarg.h: include\nuttx\lib\stdarg.h
|
|
|
|
$(Q) cp -f include\nuttx\lib\stdarg.h include\stdarg.h
|
2012-11-11 19:36:28 +01:00
|
|
|
else
|
|
|
|
include\stdarg.h:
|
|
|
|
endif
|
|
|
|
|
2019-08-06 23:59:19 +02:00
|
|
|
# Target used to copy include\nuttx\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\setjmp.h. But first, we
|
|
|
|
# have to copy setjmp.h from include\nuttx\. to include\.
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
2022-11-09 01:56:52 +01:00
|
|
|
include\setjmp.h: include\nuttx\lib\setjmp.h
|
|
|
|
$(Q) cp -f include\nuttx\lib\setjmp.h include\setjmp.h
|
2019-08-06 23:59:19 +02:00
|
|
|
else
|
|
|
|
include\setjmp.h:
|
|
|
|
endif
|
|
|
|
|
2023-12-28 12:22:04 +01:00
|
|
|
# Targets used to generate compiler-specific include paths
|
|
|
|
# Build this tools needed early in the build
|
|
|
|
# so we define it as a dependency of `context` target
|
|
|
|
|
|
|
|
tools\incdir$(HOSTEXEEXT):
|
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host incdir INCDIR="$(TOPDIR)\tools\incdir.bat"
|
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# Targets used to build include\nuttx\version.h. Creation of version.h is
|
|
|
|
# part of the overall NuttX configuration sequence. Notice that the
|
|
|
|
# tools\mkversion tool is built and used to create include\nuttx\version.h
|
|
|
|
|
2012-11-13 03:39:01 +01:00
|
|
|
tools\mkversion$(HOSTEXEEXT):
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host mkversion$(HOSTEXEEXT)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
$(TOPDIR)\.version:
|
2014-01-04 16:14:42 +01:00
|
|
|
$(Q) echo CONFIG_VERSION_STRING="0" > .version
|
|
|
|
$(Q) echo CONFIG_VERSION_MAJOR=0 >> .version
|
|
|
|
$(Q) echo CONFIG_VERSION_MINOR=0 >> .version
|
2020-04-18 20:47:04 +02:00
|
|
|
$(Q) echo CONFIG_VERSION_PATCH=0 >> .version
|
2014-01-04 16:14:42 +01:00
|
|
|
$(Q) echo CONFIG_VERSION_BUILD="0" >> .version
|
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
include\nuttx\version.h: $(TOPDIR)\.version tools\mkversion$(HOSTEXEEXT)
|
2012-11-13 03:39:01 +01:00
|
|
|
$(Q) tools\mkversion$(HOSTEXEEXT) $(TOPDIR) > include\nuttx\version.h
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
# Targets used to build include\nuttx\config.h. Creation of config.h is
|
|
|
|
# part of the overall NuttX configuration sequence. Notice that the
|
|
|
|
# tools\mkconfig tool is built and used to create include\nuttx\config.h
|
|
|
|
|
2023-07-31 21:28:13 +02:00
|
|
|
tools\mkconfig$(HOSTEXEEXT): prebuild
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host mkconfig$(HOSTEXEEXT)
|
2018-05-29 21:21:26 +02:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
include\nuttx\config.h: $(TOPDIR)\.config tools\mkconfig$(HOSTEXEEXT)
|
2023-06-01 23:43:48 +02:00
|
|
|
$(Q) grep -v "CONFIG_BASE_DEFCONFIG" "$(TOPDIR)\.config" > "$(TOPDIR)\.config.tmp"
|
|
|
|
# In-place edit can mess up permissions on Windows
|
|
|
|
$(Q) if ! cmp -s "$(TOPDIR)\.config.tmp" "$(TOPDIR)\.config.orig" ; then \
|
2023-07-10 04:17:18 +02:00
|
|
|
sed "/CONFIG_BASE_DEFCONFIG/ { /-dirty/! s/\"$$/-dirty\"/ }" "$(TOPDIR)\.config" > "$(TOPDIR)\.config-temp"; \
|
2023-06-01 23:43:48 +02:00
|
|
|
else \
|
|
|
|
sed "s/-dirty//g" "$(TOPDIR)\.config" > "$(TOPDIR)\.config-temp"; \
|
|
|
|
fi
|
|
|
|
$(Q) mv -f "$(TOPDIR)\.config-temp" "$(TOPDIR)\.config"
|
|
|
|
$(Q) rm -f "$(TOPDIR)\.config.tmp"
|
2012-11-13 03:39:01 +01:00
|
|
|
$(Q) tools\mkconfig$(HOSTEXEEXT) $(TOPDIR) > include\nuttx\config.h
|
|
|
|
|
|
|
|
# Targets used to create dependencies
|
|
|
|
|
2012-11-14 16:55:07 +01:00
|
|
|
tools\mkdeps$(HOSTEXEEXT):
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host mkdeps$(HOSTEXEEXT)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
# .dirlinks, and helpers
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
|
|
|
# Directories links. Most of establishing the NuttX configuration involves
|
|
|
|
# setting up symbolic links with 'generic' directory names to specific,
|
|
|
|
# configured directories.
|
2017-05-31 23:17:28 +02:00
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# Link the arch\<arch-name>\include directory to include\arch
|
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
include\arch:
|
2022-01-04 16:46:26 +01:00
|
|
|
@echo "LN: $@ to $(ARCH_DIR)\include"
|
|
|
|
$(Q) $(DIRLINK) $(TOPDIR)\$(ARCH_DIR)\include $@
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2019-08-21 15:39:29 +02:00
|
|
|
# Link the boards\<arch>\<chip>\<board>\include directory to include\arch\board
|
2023-12-02 05:02:58 +01:00
|
|
|
# If the above path does not exist, then we try to link to common
|
|
|
|
|
|
|
|
LINK_INCLUDE_DIR=$(BOARD_DIR)/include
|
|
|
|
ifeq ($(wildcard $(LINK_INCLUDE_DIR)),)
|
|
|
|
ifneq ($(strip $(BOARD_COMMON_DIR)),)
|
|
|
|
LINK_INCLUDE_DIR = $(BOARD_COMMON_DIR)/include
|
|
|
|
endif
|
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
include\arch\board: | include\arch
|
|
|
|
@echo "LN: $@ to $(BOARD_DIR)\include"
|
2023-12-02 05:02:58 +01:00
|
|
|
$(Q) $(DIRLINK) $(LINK_INCLUDE_DIR) $@
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2019-08-30 17:28:47 +02:00
|
|
|
# Link the boards\<arch>\<chip>\common dir to arch\<arch-name>\src\board
|
|
|
|
# Link the boards\<arch>\<chip>\<board>\src dir to arch\<arch-name>\src\board\board
|
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
ifneq ($(BOARD_COMMON_DIR),)
|
|
|
|
ARCH_SRC_BOARD_SYMLINK=$(BOARD_COMMON_DIR)
|
|
|
|
ARCH_SRC_BOARD_BOARD_SYMLINK=$(BOARD_DIR)\src
|
2019-08-30 17:28:47 +02:00
|
|
|
else
|
2022-01-04 16:46:26 +01:00
|
|
|
ARCH_SRC_BOARD_SYMLINK=$(BOARD_DIR)\src
|
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
ifneq ($(ARCH_SRC_BOARD_SYMLINK),)
|
2021-12-29 21:38:26 +01:00
|
|
|
$(ARCH_SRC)\board:
|
2022-01-04 16:46:26 +01:00
|
|
|
@echo "LN: $@ to $(ARCH_SRC_BOARD_SYMLINK)"
|
|
|
|
$(Q) $(DIRLINK) $(ARCH_SRC_BOARD_SYMLINK) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ARCH_SRC_BOARD_BOARD_SYMLINK),)
|
|
|
|
$(ARCH_SRC)\board\board: | $(ARCH_SRC)\board
|
|
|
|
@echo "LN: $@ to $(ARCH_SRC_BOARD_BOARD_SYMLINK)"
|
|
|
|
$(Q) $(DIRLINK) $(ARCH_SRC_BOARD_BOARD_SYMLINK) $@
|
2019-08-30 17:28:47 +02:00
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-03-19 14:40:32 +01:00
|
|
|
# Link the boards\<arch>\<chip>\drivers dir to drivers\platform
|
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
drivers\platform:
|
2022-01-04 16:46:26 +01:00
|
|
|
@echo "LN: $@ to $(BOARD_DRIVERS_DIR)"
|
|
|
|
$(Q) $(DIRLINK) $(BOARD_DRIVERS_DIR) $@
|
2020-03-19 14:40:32 +01:00
|
|
|
|
|
|
|
# Link arch\<arch-name>\src\<chip-name> to arch\<arch-name>\src\chip
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-10-15 05:29:59 +02:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_CUSTOM),y)
|
2022-01-04 16:46:26 +01:00
|
|
|
ARCH_SRC_CHIP_SYMLINK_DIR=$(CHIP_DIR)
|
2020-10-15 05:29:59 +02:00
|
|
|
else ifneq ($(CONFIG_ARCH_CHIP),)
|
2022-01-04 16:46:26 +01:00
|
|
|
ARCH_SRC_CHIP_SYMLINK_DIR=$(TOPDIR)\$(ARCH_SRC)\$(CONFIG_ARCH_CHIP)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ARCH_SRC_CHIP_SYMLINK_DIR),)
|
|
|
|
$(ARCH_SRC)\chip:
|
|
|
|
@echo "LN: $@ to $(ARCH_SRC_CHIP_SYMLINK_DIR)"
|
|
|
|
$(Q) $(DIRLINK) $(ARCH_SRC_CHIP_SYMLINK_DIR) $@
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
# Link arch\<arch-name>\include\<chip-name> to include\arch\chip
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-10-15 05:29:59 +02:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_CUSTOM),y)
|
2022-01-04 16:46:26 +01:00
|
|
|
INCLUDE_ARCH_CHIP_SYMLINK_DIR=$(CHIP_DIR)\include
|
2020-10-15 05:29:59 +02:00
|
|
|
else ifneq ($(CONFIG_ARCH_CHIP),)
|
2022-01-04 16:46:26 +01:00
|
|
|
INCLUDE_ARCH_CHIP_SYMLINK_DIR=$(TOPDIR)\$(ARCH_INC)\$(CONFIG_ARCH_CHIP)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(INCLUDE_ARCH_CHIP_SYMLINK_DIR),)
|
2022-01-05 14:34:42 +01:00
|
|
|
include\arch\chip: | include\arch
|
2022-01-04 16:46:26 +01:00
|
|
|
@echo "LN: $@ to $(INCLUDE_ARCH_CHIP_SYMLINK_DIR)"
|
|
|
|
$(DIRLINK) $(INCLUDE_ARCH_CHIP_SYMLINK_DIR) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Copy $(CHIP_KCONFIG) to arch\dummy\Kconfig
|
|
|
|
|
|
|
|
arch\dummy\Kconfig:
|
|
|
|
@echo "CP: $@ to $(CHIP_KCONFIG)"
|
|
|
|
$(Q) cp -f $(CHIP_KCONFIG) $@
|
|
|
|
|
2022-01-24 02:58:30 +01:00
|
|
|
# Copy $(BOARD_KCONFIG) to boards\dummy\Kconfig
|
|
|
|
|
|
|
|
boards\dummy\Kconfig:
|
|
|
|
@echo "CP: $@ to $(BOARD_KCONFIG)"
|
|
|
|
$(Q) cp -f $(BOARD_KCONFIG) $@
|
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
DIRLINKS_SYMLINK = \
|
|
|
|
include\arch \
|
|
|
|
include\arch\board \
|
|
|
|
drivers\platform \
|
|
|
|
|
|
|
|
DIRLINKS_FILE = \
|
|
|
|
arch\dummy\Kconfig \
|
2022-01-24 02:58:30 +01:00
|
|
|
boards\dummy\Kconfig \
|
2022-01-04 16:46:26 +01:00
|
|
|
|
|
|
|
ifneq ($(INCLUDE_ARCH_CHIP_SYMLINK_DIR),)
|
|
|
|
DIRLINKS_SYMLINK += include\arch\chip
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
2022-01-04 16:46:26 +01:00
|
|
|
|
|
|
|
ifneq ($(ARCH_SRC_CHIP_SYMLINK_DIR),)
|
|
|
|
DIRLINKS_SYMLINK += $(ARCH_SRC)\chip
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ARCH_SRC_BOARD_SYMLINK),)
|
|
|
|
DIRLINKS_SYMLINK += $(ARCH_SRC)\board
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(ARCH_SRC_BOARD_BOARD_SYMLINK),)
|
|
|
|
DIRLINKS_SYMLINK += $(ARCH_SRC)\board\board
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(APPDIR),)
|
|
|
|
DIRLINKS_EXTERNAL_DIRS += $(APPDIR)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Generate a pattern to build $(DIRLINKS_EXTERNAL_DIRS)
|
|
|
|
DIRLINKS_EXTERNAL_DEP = $(patsubst %,%\.dirlinks,$(DIRLINKS_EXTERNAL_DIRS))
|
|
|
|
DIRLINKS_FILE += $(DIRLINKS_EXTERNAL_DEP)
|
|
|
|
|
|
|
|
.dirlinks: $(DIRLINKS_FILE) | $(DIRLINKS_SYMLINK)
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
# Pattern rule for $(DIRLINKS_EXTERNAL_DEP)
|
|
|
|
|
|
|
|
%\.dirlinks:
|
|
|
|
$(Q) $(MAKE) -C $(patsubst %\.dirlinks,%,$@) dirlinks
|
2020-10-15 05:29:59 +02:00
|
|
|
$(Q) touch $@
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
# clean_dirlinks
|
|
|
|
#
|
|
|
|
# This is part of the distclean target. It removes all symbolic links created by the dirlink target.
|
|
|
|
|
|
|
|
# The symlink subfolders need to be removed before the parent symlinks
|
|
|
|
|
|
|
|
.PHONY: clean_dirlinks
|
|
|
|
clean_dirlinks:
|
|
|
|
$(Q) $(call DELFILE, $(DIRLINKS_FILE))
|
|
|
|
$(Q) $(call DELFILE, .dirlinks)
|
|
|
|
$(Q) $(DIRUNLINK) drivers\platform
|
|
|
|
ifneq ($(INCLUDE_ARCH_CHIP_SYMLINK_DIR),)
|
|
|
|
$(Q) $(DIRUNLINK) include\arch\chip
|
|
|
|
endif
|
|
|
|
$(Q) $(DIRUNLINK) include\arch\board
|
|
|
|
$(Q) $(DIRUNLINK) include\arch
|
|
|
|
ifneq ($(ARCH_SRC_BOARD_BOARD_SYMLINK),)
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)\board\board
|
|
|
|
endif
|
|
|
|
ifneq ($(ARCH_SRC_BOARD_SYMLINK),)
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)\board
|
|
|
|
endif
|
|
|
|
ifneq ($(ARCH_SRC_CHIP_SYMLINK_DIR),)
|
|
|
|
$(Q) $(DIRUNLINK) $(ARCH_SRC)\chip
|
|
|
|
endif
|
|
|
|
|
2012-11-11 19:36:28 +01: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.
|
|
|
|
|
2021-12-22 16:59:47 +01:00
|
|
|
# Generate a pattern to make Directories.mk context
|
|
|
|
|
|
|
|
CONTEXTDIRS_DEPS = $(patsubst %,%\.context,$(CONTEXTDIRS))
|
|
|
|
|
2023-12-28 12:22:04 +01:00
|
|
|
context: tools\incdir$(HOSTEXEEXT) include\nuttx\config.h include\nuttx\version.h $(CONTEXTDIRS_DEPS) .dirlinks | staging
|
2021-12-22 16:59:47 +01:00
|
|
|
|
|
|
|
ifeq ($(NEED_MATH_H),y)
|
|
|
|
context: include\math.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_FLOAT_H),y)
|
|
|
|
context: include\float.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_STDARG_H),y)
|
|
|
|
context: include\stdarg.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_SETJMP_H),y)
|
|
|
|
context: include\setjmp.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
staging:
|
2022-11-10 17:19:13 +01:00
|
|
|
$(Q) mkdir $@
|
2021-12-22 16:59:47 +01:00
|
|
|
|
|
|
|
# Pattern rule for $(CONTEXTDIRS_DEPS)
|
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
%.context: include\nuttx\config.h .dirlinks
|
2021-12-22 16:59:47 +01:00
|
|
|
$(Q) $(MAKE) -C $(patsubst %.context,%,$@) TOPDIR="$(TOPDIR)" context
|
|
|
|
$(Q) touch $@
|
2012-11-11 19:36:28 +01: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.
|
|
|
|
|
|
|
|
clean_context:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) for %%G in ($(CCLEANDIRS)) do ( if exist %%G\Makefile $(MAKE) -C %%G clean_context )
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, include\nuttx\config.h)
|
|
|
|
$(call DELFILE, include\nuttx\version.h)
|
2020-04-25 19:08:13 +02:00
|
|
|
$(call DELFILE, include\float.h)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, include\math.h)
|
|
|
|
$(call DELFILE, include\stdarg.h)
|
2019-08-06 23:59:19 +02:00
|
|
|
$(call DELFILE, include\setjmp.h)
|
2020-10-15 05:29:59 +02:00
|
|
|
$(call DELFILE, arch\dummy\Kconfig)
|
2022-11-10 16:52:13 +01:00
|
|
|
$(call DELFILE, $(subst /,\,$(CONTEXTDIRS_DEPS)))
|
|
|
|
$(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
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2014-01-31 02:00:23 +01:00
|
|
|
# Archive targets. The target build sequence will first create a series of
|
2012-11-11 19:36:28 +01:00
|
|
|
# libraries, one per configured source file directory. The final NuttX
|
|
|
|
# execution will then be built from those libraries. The following targets
|
2012-11-19 20:53:53 +01:00
|
|
|
# build those libraries.
|
2013-03-23 15:46:02 +01:00
|
|
|
|
2022-11-09 01:56:52 +01:00
|
|
|
include tools/LibTargets.mk
|
|
|
|
|
2023-07-31 21:28:13 +02:00
|
|
|
# prebuild
|
|
|
|
#
|
|
|
|
# Some architectures require the use of special tools and special handling
|
|
|
|
# BEFORE building NuttX. The `Make.defs` files for those architectures
|
|
|
|
# should override the following define with the correct operations for
|
|
|
|
# that platform.
|
|
|
|
|
|
|
|
prebuild:
|
|
|
|
$(call PREBUILD, $(TOPDIR))
|
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# pass1 and pass2
|
|
|
|
#
|
|
|
|
# If the 2 pass build option is selected, then this pass1 target is
|
|
|
|
# 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 02:00:23 +01:00
|
|
|
# is unknown to this makefile unless CONFIG_PASS1_OBJECT is defined.
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-05-31 15:07:31 +02:00
|
|
|
pass1: $(USERLIBS)
|
2020-05-27 11:50:52 +02:00
|
|
|
|
2020-05-31 15:07:31 +02:00
|
|
|
pass2: $(NUTTXLIBS)
|
2020-05-27 11:50:52 +02: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
|
2012-11-11 19:36:28 +01:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
|
|
|
$(Q) if [ -z "$(CONFIG_PASS1_BUILDIR)" ]; then \
|
|
|
|
echo "ERROR: CONFIG_PASS1_BUILDIR not defined"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
$(Q) if [ ! -d "$(CONFIG_PASS1_BUILDIR)" ]; then \
|
|
|
|
echo "ERROR: CONFIG_PASS1_BUILDIR does not exist"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
$(Q) if [ ! -f "$(CONFIG_PASS1_BUILDIR)\Makefile" ]; then \
|
|
|
|
echo "ERROR: No Makefile in CONFIG_PASS1_BUILDIR"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) LINKLIBS="$(LINKLIBS)" USERLIBS="$(USERLIBS)" "$(CONFIG_PASS1_TARGET)"
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
2022-10-15 10:47:44 +02:00
|
|
|
$(Q) $(MAKE) -C $(ARCH_SRC) EXTRA_OBJS="$(EXTRA_OBJS)" LINKLIBS="$(LINKLIBS)" APPDIR="$(APPDIR)" EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)" $(BIN)
|
2021-02-04 22:41:01 +01:00
|
|
|
$(Q) echo $(BIN) > nuttx.manifest
|
|
|
|
$(Q) printf '%s\n' *.map >> nuttx.manifest
|
2012-11-11 19:36:28 +01:00
|
|
|
ifeq ($(CONFIG_INTELHEX_BINARY),y)
|
2021-02-04 22:41:01 +01:00
|
|
|
@echo "CP: nuttx.hex"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O ihex $(BIN) nuttx.hex
|
|
|
|
$(Q) echo nuttx.hex >> nuttx.manifest
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MOTOROLA_SREC),y)
|
2021-02-04 22:41:01 +01:00
|
|
|
@echo "CP: nuttx.srec"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O srec $(BIN) nuttx.srec
|
|
|
|
$(Q) echo nuttx.srec >> nuttx.manifest
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RAW_BINARY),y)
|
2021-02-04 22:41:01 +01:00
|
|
|
@echo "CP: nuttx.bin"
|
|
|
|
$(Q) $(OBJCOPY) $(OBJCOPYARGS) -O binary $(BIN) nuttx.bin
|
|
|
|
$(Q) echo nuttx.bin >> nuttx.manifest
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
2020-07-01 05:34:44 +02:00
|
|
|
$(call POSTBUILD, $(TOPDIR))
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-10-14 15:57:21 +02:00
|
|
|
# flash (or download : DEPRECATED)
|
2012-11-11 19:36:28 +01:00
|
|
|
#
|
2021-10-14 15:57:21 +02:00
|
|
|
# This is a helper target that will rebuild NuttX and flash it to the target
|
2012-11-11 19:36:28 +01:00
|
|
|
# system in one step. The operation of this target depends completely upon
|
2021-10-14 15:57:21 +02:00
|
|
|
# implementation of the FLASH command in the user Make.defs file. It will
|
|
|
|
# generate an error if the FLASH command is not defined.
|
|
|
|
|
|
|
|
flash: $(BIN)
|
|
|
|
$(call FLASH, $<)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
|
|
|
download: $(BIN)
|
2021-10-14 15:57:21 +02:00
|
|
|
$(call FLASH, $<)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-09-14 15:41:59 +02:00
|
|
|
# bootloader
|
|
|
|
#
|
|
|
|
# Some architectures require the provisioning of a bootloader or other
|
|
|
|
# functions required for properly executing the NuttX binary.
|
|
|
|
# Make.defs files for those architectures should define a bootloader target
|
|
|
|
# with the correct operations for that platform. It will generate an error
|
|
|
|
# if the bootloader target is not defined.
|
|
|
|
|
|
|
|
bootloader:
|
|
|
|
$(Q) $(MAKE) -C $(ARCH_SRC) bootloader
|
|
|
|
|
|
|
|
# clean_bootloader
|
|
|
|
#
|
|
|
|
# Removes all of the files and directories created by the bootloader target.
|
|
|
|
# It will generate an error if the clean_bootloader target is not defined on
|
|
|
|
# the architecture-specific Makefile.
|
|
|
|
|
|
|
|
clean_bootloader:
|
|
|
|
$(Q) $(MAKE) -C $(ARCH_SRC) clean_bootloader
|
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# pass1dep: Create pass1 build dependencies
|
|
|
|
# pass2dep: Create pass2 build dependencies
|
|
|
|
|
2012-11-14 16:55:07 +01:00
|
|
|
pass1dep: context tools\mkdeps$(HOSTEXEEXT)
|
2022-11-12 13:38:06 +01:00
|
|
|
ifneq ($(USERDEPDIRS),)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) for %%G in ($(USERDEPDIRS)) do ( $(MAKE) -C %%G depend )
|
2022-11-12 13:38:06 +01:00
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2012-11-14 16:55:07 +01:00
|
|
|
pass2dep: context tools\mkdeps$(HOSTEXEEXT)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) for %%G in ($(KERNDEPDIRS)) do ( $(MAKE) -C %%G EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)" depend )
|
2012-11-11 19:36:28 +01: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 17:52:09 +02:00
|
|
|
# location: https://bitbucket.org/nuttx/tools/downloads/. See
|
2012-11-11 19:36:28 +01:00
|
|
|
# misc\tools\README.txt for additional information.
|
|
|
|
|
2023-04-26 13:26:17 +02:00
|
|
|
KCONFIG_ENV = set APPSDIR=$(patsubst "%",%,${CONFIG_APPS_DIR})& \
|
|
|
|
set EXTERNALDIR=$(EXTERNALDIR)& \
|
|
|
|
set APPSBINDIR=$(patsubst "%",%,${CONFIG_APPS_DIR})& \
|
|
|
|
set BINDIR=$(patsubst "%",%,${TOPDIR})&
|
2023-02-07 06:56:13 +01:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
config:
|
|
|
|
$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) $(MAKE) apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) $(KCONFIG_ENV) kconfig-conf Kconfig
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
oldconfig:
|
|
|
|
$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) $(MAKE) apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) ${KCONFIG_ENV} kconfig-conf --oldconfig Kconfig
|
2012-12-22 17:47:02 +01:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
olddefconfig:
|
|
|
|
$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) $(MAKE) apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) ${KCONFIG_ENV} kconfig-conf --olddefconfig Kconfig
|
2016-03-08 23:50:58 +01:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
menuconfig:
|
|
|
|
$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) $(MAKE) apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) ${KCONFIG_ENV} kconfig-mconf Kconfig
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-12-29 21:38:26 +01:00
|
|
|
nconfig:
|
|
|
|
$(Q) $(MAKE) clean_context
|
|
|
|
$(Q) $(MAKE) apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) ${KCONFIG_ENV} kconfig-nconf Kconfig
|
2018-04-22 18:20:29 +02:00
|
|
|
|
2020-05-18 09:30:40 +02:00
|
|
|
savedefconfig: apps_preconfig
|
2023-02-07 06:56:13 +01:00
|
|
|
$(Q) ${KCONFIG_ENV} kconfig-conf --savedefconfig defconfig.tmp Kconfig
|
2021-01-05 05:29:08 +01:00
|
|
|
$(Q) kconfig-tweak --file defconfig.tmp -u CONFIG_APPS_DIR
|
2023-06-01 23:43:48 +02:00
|
|
|
$(Q) kconfig-tweak --file defconfig.tmp -u CONFIG_BASE_DEFCONFIG
|
2017-07-10 02:24:03 +02:00
|
|
|
$(Q) grep "CONFIG_ARCH=" .config >> defconfig.tmp
|
2017-07-10 04:05:59 +02:00
|
|
|
-$(Q) grep "^CONFIG_ARCH_CHIP_" .config >> defconfig.tmp
|
2020-03-19 14:40:32 +01:00
|
|
|
-$(Q) grep "CONFIG_ARCH_CHIP=" .config >> defconfig.tmp
|
2017-07-10 02:48:28 +02:00
|
|
|
-$(Q) grep "CONFIG_ARCH_BOARD=" .config >> defconfig.tmp
|
|
|
|
-$(Q) grep "^CONFIG_ARCH_CUSTOM" .config >> defconfig.tmp
|
2020-03-19 14:40:32 +01:00
|
|
|
-$(Q) grep "^CONFIG_ARCH_BOARD_CUSTOM" .config >> defconfig.tmp
|
|
|
|
$(Q) export LC_ALL=C; cat defconfig.tmp | sort | uniq > sortedconfig.tmp
|
2019-03-03 15:30:14 +01:00
|
|
|
$(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 02:24:03 +02:00
|
|
|
$(Q) rm -f defconfig.tmp
|
2019-03-03 15:30:14 +01:00
|
|
|
$(Q) rm -f sortedconfig.tmp
|
2017-07-08 14:55:50 +02:00
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
# export
|
|
|
|
#
|
|
|
|
# The export target will package the NuttX libraries and header files into
|
|
|
|
# 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'
|
|
|
|
|
2020-04-03 14:19:15 +02:00
|
|
|
export: ${NUTTXLIBS}
|
2020-05-18 16:18:15 +02:00
|
|
|
$(Q) $(MKEXPORT) $(MKEXPORT_ARGS) -l "$(EXPORTLIBS)"
|
2012-11-11 19:36:28 +01: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.
|
|
|
|
|
|
|
|
depend: pass1dep pass2dep
|
|
|
|
|
2020-05-22 02:36:20 +02:00
|
|
|
$(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
|
|
|
|
|
|
|
|
subdir_clean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_clean)
|
2012-11-11 19:36:28 +01:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) clean
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
clean: subdir_clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN))
|
|
|
|
$(call DELFILE, nuttx.*)
|
|
|
|
$(call DELFILE, *.map)
|
|
|
|
$(call DELFILE, _SAVED_APPS_config)
|
|
|
|
$(call DELFILE, nuttx-export*)
|
2013-03-12 22:53:18 +01:00
|
|
|
$(call DELFILE, nuttx_user*)
|
2017-06-15 17:59:32 +02:00
|
|
|
$(call DELFILE, .gdbinit)
|
2018-11-06 14:37:02 +01:00
|
|
|
$(call DELDIR, staging)
|
2020-04-25 19:08:13 +02:00
|
|
|
$(call DELFILE, uImage)
|
2012-11-17 19:54:53 +01:00
|
|
|
$(call CLEAN)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2020-05-22 02:36:20 +02:00
|
|
|
$(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
|
|
|
|
|
|
|
|
subdir_distclean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_distclean)
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2021-09-01 04:11:39 +02:00
|
|
|
distclean: clean subdir_distclean
|
2012-11-11 19:36:28 +01:00
|
|
|
ifeq ($(CONFIG_BUILD_2PASS),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) distclean
|
2021-09-24 12:25:17 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_HAVE_BOOTLOADER),y)
|
|
|
|
$(Q) $(MAKE) clean_bootloader
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
2021-09-01 04:11:39 +02:00
|
|
|
$(Q) $(MAKE) clean_context
|
2022-11-05 11:14:57 +01:00
|
|
|
$(Q) $(MAKE) -C tools -f Makefile.host clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.defs)
|
2020-03-19 19:09:45 +01:00
|
|
|
$(call DELFILE, defconfig)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, .config)
|
|
|
|
$(call DELFILE, .config.old)
|
2023-06-01 23:43:48 +02:00
|
|
|
$(call DELFILE, .config.orig)
|
2012-11-11 19:36:28 +01: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 01:35:00 +02:00
|
|
|
# apps_preconfig: Prepare applications to be configured
|
2012-11-11 19:36:28 +01: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-06 20:00:50 +01:00
|
|
|
# directory.
|
2012-11-11 19:36:28 +01:00
|
|
|
|
2022-01-04 16:46:26 +01:00
|
|
|
apps_preconfig: .dirlinks
|
2015-08-12 01:35:00 +02:00
|
|
|
ifneq ($(APPDIR),)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C "$(APPDIR)" preconfig
|
2015-08-12 01:35:00 +02:00
|
|
|
endif
|
|
|
|
|
2012-11-11 19:36:28 +01:00
|
|
|
apps_clean:
|
|
|
|
ifneq ($(APPDIR),)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C "$(APPDIR)" clean
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
apps_distclean:
|
|
|
|
ifneq ($(APPDIR),)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C "$(APPDIR)" distclean
|
2012-11-11 19:36:28 +01:00
|
|
|
endif
|