Finish code part

This commit is contained in:
2026-06-01 17:18:38 -07:00
parent 3ab01575a2
commit 698f67d174
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
CC=clang
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c23 -D_POSIX_C_SOURCE=200809L -pthread -O2
CFLAGS+=-Og -g -fsanitize=address,undefined
#CFLAGS+=-Og -g -fsanitize=address,undefined
SRCS=main.c threadpool.c util.c server.c http.c
OBJS=$(SRCS:%.c=bin/%.o)