aboutsummaryrefslogtreecommitdiff
path: root/server/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-01 21:20:16 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-01 21:20:16 +0100
commit83d614ba7462f8409865e50d6d6ba7736a474b7a (patch)
tree67e2c8ac2d25852d58464db022891f5386292adc /server/makefile
parent9aa8749b0f0034b8321bca34261b9e993b7ac2b1 (diff)
downloadhurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar
hurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar.bz2
hurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar.zst
build editor
Diffstat (limited to 'server/makefile')
-rw-r--r--server/makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/makefile b/server/makefile
index 8c8303ac..73e99a2d 100644
--- a/server/makefile
+++ b/server/makefile
@@ -18,6 +18,7 @@ SERVER = ../target/release/hurrycurry-server
REPLAYTOOL = ../target/release/hurrycurry-replaytool
DISCOVER = ../target/release/hurrycurry-discover
BOT = ../target/release/hurrycurry-bot
+EDITOR = ../target/release/hurrycurry-editor
.PHONY: all clean server replaytool discover bot
all: server replaytool discover bot
@@ -35,4 +36,6 @@ $(BOT): $(shell find protocol bot client-lib -type f)
{ cd bot; cargo $(CARGOFLAGS) build --release; }
$(DISCOVER): $(shell find protocol discover -type f)
{ cd discover; cargo $(CARGOFLAGS) build --release; }
+$(EDITOR): $(shell find protocol client-lib editor -type f)
+ { cd editor; cargo $(CARGOFLAGS) build --release; }