aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-11 06:26:04 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-11 06:26:39 -0400
commitd92bf1f7cf76d0c678ccbaea10a5ff6d41630e52 (patch)
treed890d17b83013c6f0a975f8431d478eff94f5542 /Makefile
parentea47f06b8fa0ebab649ea1f7b323246d7e482438 (diff)
downloadfujinet-chat-d92bf1f7cf76d0c678ccbaea10a5ff6d41630e52.tar.gz
Remove server/nick prompts from client, add a separate config tool that loads as an init segment, with lots more options.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cf1378c..d016e10 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-PARTS=memsetup.xex font_dl.xex client.xex
+PARTS=config/config.xex memsetup.xex font_dl.xex client.xex
TESTXEX=fnchat-$(shell date +%Y%m%d-%H%M).xex
@@ -16,6 +16,9 @@ client.xex: client
client:
$(MAKE) -f Makefile.client
+config/config.xex:
+ $(MAKE) -C config
+
clean:
rm -f $(PARTS) *.o
$(MAKE) -f Makefile.client clean