summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index be54efe..24efb25 100644
--- a/Makefile
+++ b/Makefile
@@ -42,8 +42,9 @@ derived-assets = \
tests/lib_test.bin \
side-assets = \
- papo.public.socket \
- papo.command.socket \
+ papod.public.socket \
+ papod.command.socket \
+ papod.db \
wscat.socket \
glaze.socket \
@@ -116,13 +117,13 @@ uninstall:
'$(DESTDIR)$(SRCDIR)' \
-run-papo: all
- rm -f papo.public.socket papo.command.socket
+run-papod: $(NAME).bin
+ rm -f papod.public.socket papod.command.socket
./$(NAME).bin
run-wscat:
rm -f wscat.socket
- wscat wscat.socket papo.public.socket
+ wscat wscat.socket papod.public.socket
run-glaze:
rm -f glaze.socket
@@ -132,11 +133,11 @@ run-binder-web:
binder localhost:4443 glaze.socket
run-binder-ircd:
- binder localhost:6667 papo.public.socket
+ binder localhost:6667 papod.public.socket
## Run it locally, alongside its helper programs.
run: all
- for c in wscat papo binder-web binder-ircd glaze; do \
+ for c in wscat papod binder-web binder-ircd glaze; do \
$(MAKE) run-$$c & \
done; \
wait