diff options
-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; } |