summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-06-08 10:35:16 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-06-08 10:35:16 +1000
commitedc34e77d5f19aa2a697f16d9e2d24677dafb506 (patch)
tree2949e8b6cacf7f1d7232dfa6077de0b1c12d9326 /Makefile
parentc9f5da1d19e6ace5d6a7c650fe996f359e11d1a5 (diff)
feat(thread): Implement pthread bridge and fix allocator usage in wrapperfeat/multi-threading
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 72bcb00..9801d29 100644
--- a/Makefile
+++ b/Makefile
@@ -24,6 +24,10 @@ ifeq ($(USE_BENCH),1)
ALL_CFLAGS += -DUSE_BENCH
endif
+ifeq ($(USE_THREAD),1)
+ALL_CFLAGS += -DUSE_THREAD
+endif
+
OBJ = $(patsubst %.c,$(OUTDIR)/%.o,$(SRC))
all: release