git://git.cassowary.me
/
sarabande.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
021a517
)
remove unnecessary piece from makefile
author
cassowarii
<cassowary@cassowary.me>
Wed, 24 Jun 2026 02:12:49 +0000
(19:12 -0700)
committer
cassowarii
<cassowary@cassowary.me>
Wed, 24 Jun 2026 02:12:49 +0000
(19:12 -0700)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/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)