Skip to content

Commit

Permalink
Add release make task
Browse files Browse the repository at this point in the history
  • Loading branch information
kesslern committed May 13, 2020
1 parent 0de4e39 commit 8352b0f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ SRCS:=$(wildcard src*.rs)
all: build

build: $(SRCS)
cargo build --release
cargo build

release: $(SRCS)
cargo build --release --locked --all-features

test:
rm -rf $(TEST_DEST_DIR)
Expand Down

0 comments on commit 8352b0f

Please sign in to comment.