From ad0cf81fa7bb32ceb4f375d2d45abca72b688978 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Tue, 8 Nov 2022 19:12:21 +0100 Subject: [PATCH] When running make from root directory, only look for apps in directories, not in common files ... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d2ec29..ff76888 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ LDFLAGS = -static $(LD_DEBUG) -nostartfiles -nostdlib -Tlpc_link_$(LPC).ld \ -Wl,-Map=$(TARGET_DIR)/lpc_map_$(LPC).map -APPS = $(subst apps/,,$(wildcard apps/*/*)) +APPS = $(subst apps/,,$(wildcard apps/*/*/))) .PHONY: all $(APPS) all: $(APPS) -- 2.43.0