diff options
| author | Nakidai <nakidai@disroot.org> | 2026-01-10 00:12:11 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-01-10 00:12:11 +0300 |
| commit | 346abf24c900a19a77a8ce66566a7ffd86a819bb (patch) | |
| tree | 309b27ebc24aa54e7843c28e8a2118f32830d60e /Makefile | |
| parent | e7cb49752a9f15bda8f2c5c93ca0c37858f07c16 (diff) | |
| download | libreircd-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
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 1 |
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: |