summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
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)