build: Don't need use $(DELIM) in include statement
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
2e9a1b0962
commit
edb0ce2d5a
@ -35,7 +35,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include $(TOPDIR)/Make.defs
|
include $(TOPDIR)/Make.defs
|
||||||
include chip$(DELIM)Make.defs
|
include chip/Make.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_ARMV7A),y) # ARMv7-A
|
ifeq ($(CONFIG_ARCH_ARMV7A),y) # ARMv7-A
|
||||||
ARCH_SUBDIR = armv7-a
|
ARCH_SUBDIR = armv7-a
|
||||||
|
@ -97,9 +97,9 @@ endif
|
|||||||
# Source files specific to the ARM CPU family and to the S32K1xx chip family
|
# Source files specific to the ARM CPU family and to the S32K1xx chip family
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_CHIP_S32K11X),y)
|
ifeq ($(CONFIG_ARCH_CHIP_S32K11X),y)
|
||||||
include s32k1xx$(DELIM)s32k11x$(DELIM)Make.defs
|
include s32k1xx/s32k11x/Make.defs
|
||||||
else
|
else
|
||||||
include s32k1xx$(DELIM)s32k14x$(DELIM)Make.defs
|
include s32k1xx/s32k14x/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Make sure that the S32K1 common directory in included in the VPATH
|
# Make sure that the S32K1 common directory in included in the VPATH
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include $(TOPDIR)/Make.defs
|
include $(TOPDIR)/Make.defs
|
||||||
include chip$(DELIM)Make.defs
|
include chip/Make.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_MOR1KX),y) # OpenRISC mor1kx
|
ifeq ($(CONFIG_ARCH_MOR1KX),y) # OpenRISC mor1kx
|
||||||
ARCH_SUBDIR = mor1kx
|
ARCH_SUBDIR = mor1kx
|
||||||
|
@ -63,8 +63,8 @@ VPATH =
|
|||||||
SUBDIRS =
|
SUBDIRS =
|
||||||
DEPPATH = --dep-path .
|
DEPPATH = --dep-path .
|
||||||
|
|
||||||
include libnxflat$(DELIM)Make.defs
|
include libnxflat/Make.defs
|
||||||
include libelf$(DELIM)Make.defs
|
include libelf/Make.defs
|
||||||
|
|
||||||
BINFMT_AOBJS = $(BINFMT_ASRCS:.S=$(OBJEXT))
|
BINFMT_AOBJS = $(BINFMT_ASRCS:.S=$(OBJEXT))
|
||||||
BINFMT_COBJS = $(BINFMT_CSRCS:.c=$(OBJEXT))
|
BINFMT_COBJS = $(BINFMT_CSRCS:.c=$(OBJEXT))
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
LDSCRIPT = sdram.ld
|
LDSCRIPT = sdram.ld
|
||||||
|
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/Make.defs
|
include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
include board$(DELIM)Make.defs
|
include board/Make.defs
|
||||||
include src$(DELIM)Make.defs
|
include src/Make.defs
|
||||||
|
|
||||||
DEPPATH += --dep-path board
|
DEPPATH += --dep-path board
|
||||||
DEPPATH += --dep-path src
|
DEPPATH += --dep-path src
|
||||||
|
@ -33,6 +33,6 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
include platform$(DELIM)audio$(DELIM)Make.defs
|
include platform/audio/Make.defs
|
||||||
include platform$(DELIM)sensors$(DELIM)Make.defs
|
include platform/sensors/Make.defs
|
||||||
include platform$(DELIM)camera$(DELIM)Make.defs
|
include platform/camera/Make.defs
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
LDSCRIPT = dramboot.ld
|
LDSCRIPT = dramboot.ld
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
# Setup for the kind of memory that we are executing from
|
# Setup for the kind of memory that we are executing from
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
||||||
LDSCRIPT = isram.ld
|
LDSCRIPT = isram.ld
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
||||||
LDSCRIPT = isram.ld
|
LDSCRIPT = isram.ld
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
||||||
LDSCRIPT = isram.ld
|
LDSCRIPT = isram.ld
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
||||||
LDSCRIPT = isram.ld
|
LDSCRIPT = isram.ld
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-a$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-a/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
ifeq ($(CONFIG_SAMA5_BOOT_ISRAM),y)
|
||||||
LDSCRIPT = isram.ld
|
LDSCRIPT = isram.ld
|
||||||
|
@ -20,8 +20,8 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/Make.defs
|
include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
include board$(DELIM)Make.defs
|
include board/Make.defs
|
||||||
include src$(DELIM)Make.defs
|
include src/Make.defs
|
||||||
|
|
||||||
DEPPATH += --dep-path board
|
DEPPATH += --dep-path board
|
||||||
DEPPATH += --dep-path src
|
DEPPATH += --dep-path src
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-m$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
|
||||||
# Windows-native toolchains
|
# Windows-native toolchains
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-r$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-r/Toolchain.defs
|
||||||
|
|
||||||
LDSCRIPT = flash-sram.ld
|
LDSCRIPT = flash-sram.ld
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/.config
|
include $(TOPDIR)/.config
|
||||||
include $(TOPDIR)/tools/Config.mk
|
include $(TOPDIR)/tools/Config.mk
|
||||||
include $(TOPDIR)$(DELIM)arch$(DELIM)arm$(DELIM)src$(DELIM)armv7-r$(DELIM)Toolchain.defs
|
include $(TOPDIR)/arch/arm/src/armv7-r/Toolchain.defs
|
||||||
|
|
||||||
LDSCRIPT = flash-sram.ld
|
LDSCRIPT = flash-sram.ld
|
||||||
|
|
||||||
|
@ -44,43 +44,43 @@ VPATH = .
|
|||||||
# files to the source file list, add its DEPPATH info, and will add
|
# files to the source file list, add its DEPPATH info, and will add
|
||||||
# the appropriate paths to the VPATH variable
|
# the appropriate paths to the VPATH variable
|
||||||
|
|
||||||
include analog$(DELIM)Make.defs
|
include analog/Make.defs
|
||||||
include audio$(DELIM)Make.defs
|
include audio/Make.defs
|
||||||
include bch$(DELIM)Make.defs
|
include bch/Make.defs
|
||||||
include can$(DELIM)Make.defs
|
include can/Make.defs
|
||||||
include crypto$(DELIM)Make.defs
|
include crypto/Make.defs
|
||||||
include i2c$(DELIM)Make.defs
|
include i2c/Make.defs
|
||||||
include i2s$(DELIM)Make.defs
|
include i2s/Make.defs
|
||||||
include input$(DELIM)Make.defs
|
include input/Make.defs
|
||||||
include ioexpander$(DELIM)Make.defs
|
include ioexpander/Make.defs
|
||||||
include lcd$(DELIM)Make.defs
|
include lcd/Make.defs
|
||||||
include leds$(DELIM)Make.defs
|
include leds/Make.defs
|
||||||
include loop$(DELIM)Make.defs
|
include loop/Make.defs
|
||||||
include mmcsd$(DELIM)Make.defs
|
include mmcsd/Make.defs
|
||||||
include modem$(DELIM)Make.defs
|
include modem/Make.defs
|
||||||
include mtd$(DELIM)Make.defs
|
include mtd/Make.defs
|
||||||
include eeprom$(DELIM)Make.defs
|
include eeprom/Make.defs
|
||||||
include net$(DELIM)Make.defs
|
include net/Make.defs
|
||||||
include pipes$(DELIM)Make.defs
|
include pipes/Make.defs
|
||||||
include power$(DELIM)Make.defs
|
include power/Make.defs
|
||||||
include rptun$(DELIM)Make.defs
|
include rptun/Make.defs
|
||||||
include sensors$(DELIM)Make.defs
|
include sensors/Make.defs
|
||||||
include serial$(DELIM)Make.defs
|
include serial/Make.defs
|
||||||
include spi$(DELIM)Make.defs
|
include spi/Make.defs
|
||||||
include syslog$(DELIM)Make.defs
|
include syslog/Make.defs
|
||||||
include timers$(DELIM)Make.defs
|
include timers/Make.defs
|
||||||
include usbdev$(DELIM)Make.defs
|
include usbdev/Make.defs
|
||||||
include usbhost$(DELIM)Make.defs
|
include usbhost/Make.defs
|
||||||
include usbmisc$(DELIM)Make.defs
|
include usbmisc/Make.defs
|
||||||
include usbmonitor$(DELIM)Make.defs
|
include usbmonitor/Make.defs
|
||||||
include video$(DELIM)Make.defs
|
include video/Make.defs
|
||||||
include wireless$(DELIM)Make.defs
|
include wireless/Make.defs
|
||||||
include contactless$(DELIM)Make.defs
|
include contactless/Make.defs
|
||||||
include 1wire$(DELIM)Make.defs
|
include 1wire/Make.defs
|
||||||
include rf$(DELIM)Make.defs
|
include rf/Make.defs
|
||||||
|
|
||||||
ifeq ($(CONFIG_SPECIFIC_DRIVERS),y)
|
ifeq ($(CONFIG_SPECIFIC_DRIVERS),y)
|
||||||
include platform$(DELIM)Make.defs
|
include platform/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_DEV_SIMPLE_ADDRENV),y)
|
ifeq ($(CONFIG_DEV_SIMPLE_ADDRENV),y)
|
||||||
|
@ -39,7 +39,7 @@ ifeq ($(CONFIG_MODEM_U_BLOX),y)
|
|||||||
CSRCS += u-blox.c
|
CSRCS += u-blox.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include modem$(DELIM)altair$(DELIM)Make.defs
|
include modem/altair/Make.defs
|
||||||
|
|
||||||
# Include modem driver build support
|
# Include modem driver build support
|
||||||
|
|
||||||
|
@ -38,25 +38,25 @@ ifeq ($(CONFIG_DRIVERS_WIRELESS),y)
|
|||||||
# Include IEEE 802.15.4 support
|
# Include IEEE 802.15.4 support
|
||||||
|
|
||||||
ifeq ($(CONFIG_DRIVERS_IEEE802154),y)
|
ifeq ($(CONFIG_DRIVERS_IEEE802154),y)
|
||||||
include wireless$(DELIM)ieee802154$(DELIM)Make.defs
|
include wireless/ieee802154/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Include IEEE 802.11 support
|
# Include IEEE 802.11 support
|
||||||
|
|
||||||
ifeq ($(CONFIG_DRIVERS_IEEE80211),y)
|
ifeq ($(CONFIG_DRIVERS_IEEE80211),y)
|
||||||
include wireless$(DELIM)ieee80211$(DELIM)Make.defs
|
include wireless/ieee80211/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Include Bluetooth support
|
# Include Bluetooth support
|
||||||
|
|
||||||
ifeq ($(CONFIG_DRIVERS_BLUETOOTH),y)
|
ifeq ($(CONFIG_DRIVERS_BLUETOOTH),y)
|
||||||
include wireless$(DELIM)bluetooth$(DELIM)Make.defs
|
include wireless/bluetooth/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Include LPWAN support
|
# Include LPWAN support
|
||||||
|
|
||||||
ifeq ($(CONFIG_DRIVERS_LPWAN),y)
|
ifeq ($(CONFIG_DRIVERS_LPWAN),y)
|
||||||
include wireless$(DELIM)lpwan$(DELIM)Make.defs
|
include wireless/lpwan/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Include wireless drivers
|
# Include wireless drivers
|
||||||
@ -71,7 +71,7 @@ CSRCS += gs2200m.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_WL_SPIRIT),y)
|
ifeq ($(CONFIG_WL_SPIRIT),y)
|
||||||
include wireless$(DELIM)spirit$(DELIM)Make.defs
|
include wireless/spirit/Make.defs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_WL_NRF24L01),y)
|
ifeq ($(CONFIG_WL_NRF24L01),y)
|
||||||
|
@ -40,6 +40,6 @@ ifeq ($(CONFIG_DRIVERS_IEEE80211),y)
|
|||||||
|
|
||||||
# Include IEEE 802.11 drivers into the build
|
# Include IEEE 802.11 drivers into the build
|
||||||
|
|
||||||
include wireless$(DELIM)ieee80211$(DELIM)bcm43xxx$(DELIM)Make.defs
|
include wireless/ieee80211/bcm43xxx/Make.defs
|
||||||
|
|
||||||
endif # CONFIG_DRIVERS_IEEE80211
|
endif # CONFIG_DRIVERS_IEEE80211
|
||||||
|
@ -41,9 +41,9 @@ ifeq ($(CONFIG_DRIVERS_IEEE802154),y)
|
|||||||
|
|
||||||
# Include IEEE 802.15.4 drivers into the build
|
# Include IEEE 802.15.4 drivers into the build
|
||||||
|
|
||||||
include wireless$(DELIM)ieee802154$(DELIM)mrf24j40$(DELIM)Make.defs
|
include wireless/ieee802154/mrf24j40/Make.defs
|
||||||
include wireless$(DELIM)ieee802154$(DELIM)at86rf23x$(DELIM)Make.defs
|
include wireless/ieee802154/at86rf23x/Make.defs
|
||||||
include wireless$(DELIM)ieee802154$(DELIM)xbee$(DELIM)Make.defs
|
include wireless/ieee802154/xbee/Make.defs
|
||||||
|
|
||||||
# Include common IEEE 802.15.4 build support
|
# Include common IEEE 802.15.4 build support
|
||||||
|
|
||||||
|
@ -37,6 +37,6 @@
|
|||||||
|
|
||||||
ifeq ($(CONFIG_DRIVERS_LPWAN),y)
|
ifeq ($(CONFIG_DRIVERS_LPWAN),y)
|
||||||
|
|
||||||
include wireless$(DELIM)lpwan$(DELIM)sx127x$(DELIM)Make.defs
|
include wireless/lpwan/sx127x/Make.defs
|
||||||
|
|
||||||
endif # CONFIG_DRIVERS_LPWAN
|
endif # CONFIG_DRIVERS_LPWAN
|
||||||
|
@ -37,8 +37,8 @@ ifeq ($(CONFIG_WL_SPIRIT),y)
|
|||||||
|
|
||||||
# Include Spirit library support
|
# Include Spirit library support
|
||||||
|
|
||||||
include wireless$(DELIM)spirit$(DELIM)lib$(DELIM)Make.defs
|
include wireless/spirit/lib/Make.defs
|
||||||
include wireless$(DELIM)spirit$(DELIM)include$(DELIM)Make.defs
|
include wireless/spirit/include/Make.defs
|
||||||
include wireless$(DELIM)spirit$(DELIM)drivers$(DELIM)Make.defs
|
include wireless/spirit/drivers/Make.defs
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -35,8 +35,8 @@
|
|||||||
|
|
||||||
include $(TOPDIR)/Make.defs
|
include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
include proxies$(DELIM)Make.defs
|
include proxies/Make.defs
|
||||||
include stubs$(DELIM)Make.defs
|
include stubs/Make.defs
|
||||||
|
|
||||||
MKSYSCALL = "$(TOPDIR)$(DELIM)tools$(DELIM)mksyscall$(HOSTEXEEXT)"
|
MKSYSCALL = "$(TOPDIR)$(DELIM)tools$(DELIM)mksyscall$(HOSTEXEEXT)"
|
||||||
CSVFILE = "$(TOPDIR)$(DELIM)syscall$(DELIM)syscall.csv"
|
CSVFILE = "$(TOPDIR)$(DELIM)syscall$(DELIM)syscall.csv"
|
||||||
|
@ -45,9 +45,9 @@ VPATH = .
|
|||||||
|
|
||||||
# Add IEEE 802.15.4 files to the build
|
# Add IEEE 802.15.4 files to the build
|
||||||
|
|
||||||
include bluetooth$(DELIM)Make.defs
|
include bluetooth/Make.defs
|
||||||
include ieee802154$(DELIM)Make.defs
|
include ieee802154/Make.defs
|
||||||
include pktradio$(DELIM)Make.defs
|
include pktradio/Make.defs
|
||||||
|
|
||||||
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
||||||
COBJS = $(CSRCS:.c=$(OBJEXT))
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
||||||
|
Loading…
Reference in New Issue
Block a user