about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2026-01-10 00:12:11 +0300
committerNakidai <nakidai@disroot.org>2026-01-10 00:12:11 +0300
commit346abf24c900a19a77a8ce66566a7ffd86a819bb (patch)
tree309b27ebc24aa54e7843c28e8a2118f32830d60e
parente7cb49752a9f15bda8f2c5c93ca0c37858f07c16 (diff)
downloadlibreircd-346abf24c900a19a77a8ce66566a7ffd86a819bb.tar.gz
libreircd-346abf24c900a19a77a8ce66566a7ffd86a819bb.zip
Make all files dependent on ircd.h
There were bugs when struct layout was changed, and this was right
because needed files were not rebuilt. This is fixed now
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 59070a7..49a05b3 100644
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,7 @@ OBJS += user.o
 OBJS += writef.o
 
 all: ${NAME}
+${OBJS}: ircd.h
 ${NAME}: ${OBJS}
 	${CC} -o ${NAME} ${CFLAGS} ${LDFLAGS} ${OBJS}
 clean: