summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:26:09 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:26:09 +1100
commit303dcca300ec04016eaad365a1e106a0732a879c (patch)
tree9678cf58d8a694c138f0f255312b9507b0b8ce7b /Makefile
parentde8efd689efb5bb023ea5c1c2dc7ce487561a2ee (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 f24c6e2..231b307 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ ifeq ($(USE_HOSTED),1)
SRC += $(wildcard bridges/*.c)
endif
-OBJ = $(patsubst src/%.c,$(OUTDIR)/src/%.o,$(SRC))
+OBJ = $(patsubst %.c,$(OUTDIR)/%.o,$(SRC))
all: $(OUTDIR)/$(LIB)