remove unnecessary piece from makefile
authorcassowarii <cassowary@cassowary.me>
Wed, 24 Jun 2026 02:12:49 +0000 (19:12 -0700)
committercassowarii <cassowary@cassowary.me>
Wed, 24 Jun 2026 02:12:49 +0000 (19:12 -0700)
Makefile

index 579f8a0..9922968 100644 (file)
--- 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)