summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))