summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2026-02-01 22:28:31 +0300
committerNakidai <nakidai@disroot.org>2026-02-01 22:28:31 +0300
commit58a7e4a4d7449d58732e024ea07ea3623c10d8de (patch)
tree932b0402a91f4b513b5ab81a8d53af467a771f86 /Makefile
parent37b3fcd87133cf67a791dd4ec7a185d281331fb2 (diff)
downloadlibreircd-58a7e4a4d7449d58732e024ea07ea3623c10d8de.tar.gz
libreircd-58a7e4a4d7449d58732e024ea07ea3623c10d8de.zip
Fixes
- Now code depends on config.h in Makefile
- By default the smallest timeout is chosen for poll()
- Somewhy there was sizeof(PEER_QUIT_MAX)...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 49a05b3..e70390f 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ OBJS += user.o
 OBJS += writef.o
 
 all: ${NAME}
-${OBJS}: ircd.h
+${OBJS}: ircd.h config.h
 ${NAME}: ${OBJS}
 	${CC} -o ${NAME} ${CFLAGS} ${LDFLAGS} ${OBJS}
 clean: