summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-03-28 10:47:53 -0300
committerEuAndreh <eu@euandre.org>2024-03-28 10:47:53 -0300
commit60987cdc32e36aa2f30c6cc2ad83f0a355376e1c (patch)
tree69afd2a156b935f5855155f0eb69b0d8797ae978
parentsrc/static/client.js: Add some stub code (diff)
downloadpapod-60987cdc32e36aa2f30c6cc2ad83f0a355376e1c.tar.gz
papod-60987cdc32e36aa2f30c6cc2ad83f0a355376e1c.tar.xz
Makefile: s/ircd/papo/g
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 994bdee..a0dc037 100644
--- a/Makefile
+++ b/Makefile
@@ -53,9 +53,9 @@ derived-assets = \
tests/papo_test.bin \
side-assets = \
- ircd.pipe \
+ papo.pipe \
+ papo.socket \
lighttpd.socket \
- ircd.socket \
wscat.socket \
@@ -128,7 +128,7 @@ uninstall:
doctool -up '$(DESTDIR)$(MANDIR)' $(manpages)
-run-ircd: all
+run-papo: all
rm -f papo.socket
./main.bin papo.socket
@@ -143,9 +143,9 @@ run-glaze:
run-binder:
binder localhost:4321 glaze.socket
-## Run the IRC server locally and its helper programs.
+## Run papo locally and its helper programs.
run: all
- for c in ircd wscat glaze binder; do \
+ for c in papo wscat glaze binder; do \
$(MAKE) run-$$c & \
sleep 0.1; \
done; \