summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:26:28 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:30:38 +1100
commit99c82d92180a7c1b6a1d3393d91f9fef0369edb5 (patch)
treefd1449177a47b2ecb2654028f838245fe1c5d5b4 /Makefile
parent303dcca300ec04016eaad365a1e106a0732a879c (diff)
fix(Makefile): Remove source only C building boundaries
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 231b307..4b96fa7 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ $(OUTDIR)/$(LIB): $(OBJ)
mkdir -p $(OUTDIR)
$(AR) rcs $@ $^
-$(OUTDIR)/src/%.o: src/%.c
+$(OUTDIR)/%.o: %.c
mkdir -p $(dir $@)
$(CC) $(CFLAGS) -c $< -o $@