From 3a166c8e5fad37de5938fc77cacd63432ef79b86 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Sat, 11 Feb 2023 13:03:30 +0100 Subject: [PATCH] Update Makefile to prevent build of host apps with target compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4845b12..cb79d42 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,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/*/[!host]*)) .PHONY: all $(APPS) all: $(APPS) -- 2.43.0