From 346abf24c900a19a77a8ce66566a7ffd86a819bb Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sat, 10 Jan 2026 00:12:11 +0300 Subject: 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 --- Makefile | 1 + 1 file changed, 1 insertion(+) 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: -- cgit 1.4.1