summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 31d310e..8c7ce1a 100644
--- a/Makefile
+++ b/Makefile
@@ -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.