diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-01 21:21:16 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-01 21:21:16 +0100 |
commit | 74c7240f35e2d67120a674bc3d8b64caf4499b19 (patch) | |
tree | 0f42d5ef25f59d64ccac57ea8514e259c9551dff | |
parent | 83d614ba7462f8409865e50d6d6ba7736a474b7a (diff) | |
download | hurrycurry-74c7240f35e2d67120a674bc3d8b64caf4499b19.tar hurrycurry-74c7240f35e2d67120a674bc3d8b64caf4499b19.tar.bz2 hurrycurry-74c7240f35e2d67120a674bc3d8b64caf4499b19.tar.zst |
fixup: build editor
-rw-r--r-- | server/makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/makefile b/server/makefile index 73e99a2d..7162a982 100644 --- a/server/makefile +++ b/server/makefile @@ -20,12 +20,13 @@ 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 +.PHONY: all clean server replaytool discover bot editor +all: server replaytool discover bot editor server: $(SERVER) replaytool: $(REPLAYTOOL) discover: $(DISCOVER) bot: $(BOT) +editor: $(EDITOR) clean: $(SERVER): $(shell find protocol src -type f) |