From 4f1b4ba0c92c5437cb285e6ada8151b7137abe00 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Wed, 29 Dec 2021 16:00:20 +0100 Subject: [PATCH] cpu/esp_common: remove double defines from Makefile --- cpu/esp_common/Makefile.include | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cpu/esp_common/Makefile.include b/cpu/esp_common/Makefile.include index 15538f9a69..bcc9ec3fa0 100644 --- a/cpu/esp_common/Makefile.include +++ b/cpu/esp_common/Makefile.include @@ -160,9 +160,3 @@ $(BINDIR)/partitions.csv: $(FLASHFILE) $(BINDIR)/partitions.bin: $(PARTITION_TABLE_CSV) $(Q)python3 $(RIOTTOOLS)/esptools/gen_esp32part.py --verify $< $@ - -# Convert .elf and .csv to .bin files at build time, but make them available for -# tests at flash time. These can't be added to FLASHDEPS because they depend on -# on ELFFILE and would trigger a rebuild with "flash-only". -BUILD_FILES += $(FLASHFILE) $(BINDIR)/partitions.bin -TEST_EXTRA_FILES += $(FLASHFILE) $(BINDIR)/partitions.bin