From 3abcc43f1e638608b4b88bbb0ad7881d74940f8d Mon Sep 17 00:00:00 2001 From: Soikk Date: Sat, 22 Nov 2025 16:42:08 +0100 Subject: Rewrites and IPC rework - Moved functionality to temporary server directory - Separated rewrites - Moved IPC back to signals - Added get_key() in config - Reworked receive_request() - Improved error handling --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6d0d631..32613f4 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -O0 -Wall -ggdb3 +CFLAGS = -O0 -Wall -ggdb3 -D_GNU_SOURCE LDFLAGS = -lssl -lcrypto SRCDIR = src @@ -12,7 +12,7 @@ else RUNCMD = ./server.exe endif -OBJS = $(addprefix $(OBJDIR)/, bit.o files.o str.o log.o list.o crc64.o net.o ipc.o mime.o config.o) +OBJS = $(addprefix $(OBJDIR)/, bit.o files.o str.o log.o list.o crc64.o net.o ipc.o mime.o rewrites.o config.o) INCL = -I$(LIBDIR) -I$(SRCDIR) -- cgit v1.2.3