diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -134,18 +134,21 @@ run-papo: all run-wscat: rm -f wscat.socket - wscat wscat.socket papo.socket + wscat wscat.socket papo.public.socket run-glaze: rm -f glaze.socket glaze -P '/api/socket:wscat.socket' -P '*:src/static/' glaze.socket -run-binder: - binder localhost:4321 glaze.socket +run-binder-web: + binder localhost:4443 glaze.socket + +run-binder-ircd: + binder localhost:6667 papo.public.socket ## Run papo locally and its helper programs. run: all - for c in wscat papo binder glaze; do \ + for c in wscat papo binder-web binder-ircd glaze; do \ $(MAKE) run-$$c & \ done; \ wait |