From: cassowarii Date: Wed, 24 Jun 2026 02:12:49 +0000 (-0700) Subject: remove unnecessary piece from makefile X-Git-Url: https://www.git.cassowary.me/gitweb.cgi?a=commitdiff_plain;h=1e974c4717a3732b0e721fbd1adb981cfd8bcf29;p=sarabande.git remove unnecessary piece from makefile --- 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)