Browse Source

exclude sources to avoid long rebuilds of everything

master
heck 5 months ago
parent
commit
22ba774ac8
  1. 12
      examples/Makefile

12
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))

Loading…
Cancel
Save