summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-30 06:39:58 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-30 06:39:58 +1100
commit2f20883eb807b4c0952c8c1fda28546c6120a339 (patch)
tree6643ee5d4790e5a6d07dff7917ba8e28137296dc /Makefile
parenta7a9b34b832042f94813a1e325d22051a99dd633 (diff)
fix(bridges): Move stream source to src/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c461f0c..b1d5825 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ SRC = $(shell find src -name "*.c")
ifeq ($(USE_HOSTED),1)
INCLUDES += -Iinclude/bridges
CFLAGS += -DUSE_HOSTED
-SRC += $(wildcard include/bridges/*.c)
+SRC += $(shell find src/bridges -name "*.c")
endif
OBJ = $(patsubst %.c,$(OUTDIR)/%.o,$(SRC))