From 451df18af91e75b30fc75f45e31ec82d1ee48546 Mon Sep 17 00:00:00 2001 From: Nayan <33187059+GShadow5@users.noreply.github.com> Date: Thu, 8 May 2025 17:12:44 -0400 Subject: [PATCH] add response builder to makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 49d3bcb..5e0deab 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ RELEASE_FLAGS = -Wall -Wextra LFLAGS = -lpthread # Source files -SRCS = webserver.c client_handler.c request_handler.c http_stuff.c +SRCS = webserver.c client_handler.c request_handler.c http_stuff.c response_builder.c # Object files definition OBJS = $(SRCS:.c=.o)