diff options
| author | Nakidai <nakidai@disroot.org> | 2026-02-04 12:21:47 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-02-04 12:21:47 +0300 |
| commit | ce0f41da41a2d97d4a8e7159747464ecef72de4c (patch) | |
| tree | 7e09329f15932710eb9fc14d18053c812c55515f /Makefile | |
| parent | 58a7e4a4d7449d58732e024ea07ea3623c10d8de (diff) | |
| download | libreircd-ce0f41da41a2d97d4a8e7159747464ecef72de4c.tar.gz libreircd-ce0f41da41a2d97d4a8e7159747464ecef72de4c.zip | |
Add WHOIS and config parsing
Now users can query each other Plus, server info and creation date can be changed without recompiling using configuration file in IRC message format which is loaded on startup TODO: since readcfg uses IRC logic, handle() now should be able to deal with commands ending with simply \n
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile index e70390f..b9d6948 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ NAME ?= ircd CFLAGS += -Wall -Wextra OBJS += channel.o +OBJS += config.o OBJS += handle.o OBJS += loop.o OBJS += main.o |