From 2c1091da540eaf8736388b0435de188107db8a11 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 23 Apr 2019 10:30:25 +0200 Subject: [PATCH] makefiles: add bootloaders to the list of applications --- makefiles/app_dirs.inc.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makefiles/app_dirs.inc.mk b/makefiles/app_dirs.inc.mk index d181aed5e3..f39f261065 100644 --- a/makefiles/app_dirs.inc.mk +++ b/makefiles/app_dirs.inc.mk @@ -6,8 +6,9 @@ RIOTBASE ?= . # 3. use patsubst to drop possible leading "./" # 4. sort APPLICATION_DIRS := $(sort $(patsubst ./%,%,$(patsubst %/,%,$(dir $(wildcard \ - $(RIOTBASE)/examples/*/Makefile \ - $(RIOTBASE)/tests/*/Makefile \ + $(RIOTBASE)/bootloaders/*/Makefile \ + $(RIOTBASE)/examples/*/Makefile \ + $(RIOTBASE)/tests/*/Makefile \ ))))) info-applications: