diff options
Diffstat (limited to 'server/makefile')
-rw-r--r-- | server/makefile | 4 |
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; } |