use apps-or-nuttx-Make.defs for archs

This will allow apps to tweak build configuration of NuttX
This commit is contained in:
Marco Casaroli
2024-02-28 08:29:35 +01:00
committed by Alan Carvalho de Assis
parent 4c27036ea8
commit 447cc9698f
17 changed files with 17 additions and 17 deletions

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_ARMV7A),y) # ARMv7-A ifeq ($(CONFIG_ARCH_ARMV7A),y) # ARMv7-A

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_FAMILY_AVR32),y) ifeq ($(CONFIG_ARCH_FAMILY_AVR32),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
-include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
-include chip$(DELIM)Make.defs -include chip$(DELIM)Make.defs
ifeq ($(CONFIG_ARCH_XC5),y) ifeq ($(CONFIG_ARCH_XC5),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_HC12),y) ifeq ($(CONFIG_ARCH_HC12),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_MIPS),y) ifeq ($(CONFIG_ARCH_MIPS),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_CHIP_LM32),y) ifeq ($(CONFIG_ARCH_CHIP_LM32),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_MOR1KX),y) # OpenRISC mor1kx ifeq ($(CONFIG_ARCH_MOR1KX),y) # OpenRISC mor1kx

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_OPENSBI),y) ifeq ($(CONFIG_OPENSBI),y)
include opensbi/Make.defs include opensbi/Make.defs

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
-include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src ARCH_SRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
-include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
-include chip/Make.defs -include chip/Make.defs
ARCH_SUBDIR = sparc_v8 ARCH_SUBDIR = sparc_v8

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_I486),y) ifeq ($(CONFIG_ARCH_I486),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_INTEL64),y) ifeq ($(CONFIG_ARCH_INTEL64),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
ifeq ($(CONFIG_ARCH_FAMILY_LX6),y) ifeq ($(CONFIG_ARCH_FAMILY_LX6),y)

View File

@@ -18,7 +18,7 @@
# #
############################################################################ ############################################################################
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
COMPILER = ${shell basename "$(CC)"} COMPILER = ${shell basename "$(CC)"}

View File

@@ -20,7 +20,7 @@
# Makefile fragments # Makefile fragments
include $(TOPDIR)/Make.defs include $(TOPDIR)/tools/apps-or-nuttx-Make.defs
include chip/Make.defs include chip/Make.defs
# Compiler-Dependent Make: SDCC, Clang, or ZiLOG ZDS-II # Compiler-Dependent Make: SDCC, Clang, or ZiLOG ZDS-II