summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-06-06 13:30:34 -0500
committer@syxhe <https://t.me/syxhe>2025-06-06 13:30:34 -0500
commit16528ac295215e788cb226f0cc49f11f82919741 (patch)
tree8bbe621a58a421b894330205bf07285e80e40e9e /src/Makefile
parent8fe1a7ea459829145dfef4b0aa8f627f96841cbd (diff)
Get threadpool implementation workingthreadpool-debugging
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index b045807..0ee5897 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -6,10 +6,12 @@ SHELL := /usr/bin/env
6# RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto 6# RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto
7# RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto 7# RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto
8 8
9CFLAGS = -std=c2x -Wall -Wextra -Wpedantic -pedantic-errors -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -O0 $$(pkg-config --cflags libsodium) 9CFLAGS = -std=c2x -Wall -Wextra -Wpedantic -pedantic-errors -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -O0
10DEPFLAGS = -MT $@ -MMD -MP -MF $*.d
11
12CFLAGS += $$(pkg-config --cflags libsodium)
10LDLIBS += $$(pkg-config --libs-only-l libsodium) 13LDLIBS += $$(pkg-config --libs-only-l libsodium)
11LDFLAGS += $$(pkg-config --libs-only-L libsodium) 14LDFLAGS += $$(pkg-config --libs-only-L libsodium)
12DEPFLAGS = -MT $@ -MMD -MP -MF $*.d
13 15
14SOURCES := $(wildcard *.c) 16SOURCES := $(wildcard *.c)
15OBJECTS := $(patsubst %.c,%.o,$(SOURCES)) 17OBJECTS := $(patsubst %.c,%.o,$(SOURCES))