aboutsummaryrefslogtreecommitdiff
path: root/server/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-30 19:48:52 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-30 19:48:52 +0200
commit7f0a32fdd8c614194b08df2a6ec579d743cc7cda (patch)
treeb6981887a3a945c4fd29ccf1241065845a7c7a67 /server/makefile
parentf234ce8bb28e1528783d662243aa07ad23df5ed9 (diff)
downloadhurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar
hurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar.bz2
hurrycurry-7f0a32fdd8c614194b08df2a6ec579d743cc7cda.tar.zst
add CARGOFLAGS everywhere
Diffstat (limited to 'server/makefile')
-rw-r--r--server/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/makefile b/server/makefile
index b80ff3b8..c959b948 100644
--- a/server/makefile
+++ b/server/makefile
@@ -22,7 +22,7 @@ all: $(SERVER) $(REPLAYTOOL)
clean:
$(SERVER): $(shell find protocol src -type f)
- cargo build --release
+ cargo $(CARGOFLAGS) build --release
$(REPLAYTOOL): $(shell find protocol replaytool -type f)
- { cd replaytool; cargo build --release; }
+ { cd replaytool; cargo $(CARGOFLAGS) build --release; }