From 22ba774ac8f1562cbcf7ca750b2f0f4ea6bd5a6e Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 29 Oct 2024 07:54:12 +0100 Subject: [PATCH] exclude sources to avoid long rebuilds of everything --- examples/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index ed25329..d6df6cb 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -12,9 +12,19 @@ LDFLAGS += -ldizzy SRC_EXCLUDED := \ main_minimal.c \ + main_memtest1.cc \ main_adc.cc \ + main_blink.cc \ + main_cli.cc \ + main_density.cc \ + main_framework_proto1.cc \ + main_framework_proto2.cc \ main_memtest1.cc \ - test_bla.c + main_minimal.cc \ + main_template_full.cc \ + main_testtone.cc \ + main_usbhost.cc \ + SOURCES := $(wildcard *) SOURCES := $(filter-out $(SRC_EXCLUDED), $(SOURCES))