1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu: remove exports of UNDEF vars

This commit is contained in:
Alexandre Abadie 2020-01-10 14:45:34 +01:00
parent 6a416f894c
commit 92f2b820cd
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
3 changed files with 3 additions and 3 deletions

View File

@ -18,4 +18,4 @@ LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ldscripts/$(CPU).ld
LINKFLAGS += $(CFLAGS_CPU) $(CFLAGS_DBG) $(CFLAGS_OPT) -static -lgcc -nostartfiles
LINKFLAGS += -Wl,--gc-sections
export UNDEF += $(BINDIR)/cpu/startup.o
UNDEF += $(BINDIR)/cpu/startup.o

View File

@ -44,7 +44,7 @@ CFLAGS += \
#
# add the CPU specific flash configuration field for the linker
export UNDEF += $(BINDIR)/cpu/fcfield.o
UNDEF += $(BINDIR)/cpu/fcfield.o
# select kinetis periph drivers
ifeq (EA,$(KINETIS_SERIES))

View File

@ -4,7 +4,7 @@ INCLUDES += -I$(RIOTCPU)/msp430_common/include/
CFLAGS += -DCPU_MODEL_$(call uppercase_and_underscore,$(CPU_MODEL))
export UNDEF += $(BINDIR)/msp430_common/startup.o
UNDEF += $(BINDIR)/msp430_common/startup.o
# include the msp430 common Makefile
include $(RIOTMAKE)/arch/msp430.inc.mk