diff options
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -141,9 +141,15 @@ run-web: all run-proxy: all lighttpd -Df tests/lighttpd.conf +run-binder: all + socat tcp-listen:1234,fork,reuseaddr unix:lighttpd.socket + ## Run the web and IRC server locally. run: all - $(MAKE) run-ircd & $(MAKE) run-web & $(MAKE) run-proxy & wait + for c in ircd web proxy binder; do \ + $(MAKE) run-$$c & \ + done; \ + wait ## Show this help. |