From b681133934da5ecdd869267af0486b5de902051d Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski Date: Tue, 17 Oct 2023 17:20:08 +0200 Subject: [PATCH] match all *.S files except edid.S --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c4d039..7c8588d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -SOURCES := $(wildcard [0-9]*x[0-9]*.S) +SOURCES := $(filter-out edid.S, $(wildcard *.S)) BIN := $(patsubst %.S, %.bin, $(SOURCES))