From 1e974c4717a3732b0e721fbd1adb981cfd8bcf29 Mon Sep 17 00:00:00 2001 From: cassowarii Date: Tue, 23 Jun 2026 19:12:49 -0700 Subject: [PATCH] remove unnecessary piece from makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 579f8a0..9922968 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ SRC := src OBJ := obj BUILDDIR := build -SOURCES := $(shell find $(SRC) -type f -name '*.c' -not -path '$(SRC)/$(RES)/*') +SOURCES := $(shell find $(SRC) -type f -name '*.c') OBJECTS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(SOURCES)) build/a.out: $(OBJECTS) -- 1.8.3.1