summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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; \