diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-01 21:20:16 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-01 21:20:16 +0100 |
commit | 83d614ba7462f8409865e50d6d6ba7736a474b7a (patch) | |
tree | 67e2c8ac2d25852d58464db022891f5386292adc | |
parent | 9aa8749b0f0034b8321bca34261b9e993b7ac2b1 (diff) | |
download | hurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar hurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar.bz2 hurrycurry-83d614ba7462f8409865e50d6d6ba7736a474b7a.tar.zst |
build editor
-rw-r--r-- | server/makefile | 3 |
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; } |