Skip to content

Instantly share code, notes, and snippets.

@mzabaluev
Last active March 24, 2019 15:39
Show Gist options
  • Save mzabaluev/502307bb41ba6268594f to your computer and use it in GitHub Desktop.
Save mzabaluev/502307bb41ba6268594f to your computer and use it in GitHub Desktop.
Drop-in makefile for Cargo projects
CARGO = cargo
CARGO_OPTS =
all:
$(MAKE) build
$(MAKE) doc
build:
$(CARGO) $(CARGO_OPTS) build
clean:
$(CARGO) $(CARGO_OPTS) clean
check:
$(MAKE) build
$(MAKE) test
test:
$(CARGO) $(CARGO_OPTS) test
bench:
$(CARGO) $(CARGO_OPTS) bench
doc:
$(CARGO) $(CARGO_OPTS) doc
.PHONY: all build clean check test bench doc
@mqudsi
Copy link

mqudsi commented Aug 17, 2017

I believe @NichtJens is correct, cargo obtains a lock to build a project, and so the parallelization will be lost. No harm done though, since they'll still execute, just out of order - and cargo has proper dependency resolution so they'll end up actually building in the correct order on that end.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment