Skip to content

Commit 8352b0f

Browse files
committedMay 13, 2020
Add release make task
1 parent 0de4e39 commit 8352b0f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ SRCS:=$(wildcard src*.rs)
1717
all: build
1818

1919
build: $(SRCS)
20-
cargo build --release
20+
cargo build
21+
22+
release: $(SRCS)
23+
cargo build --release --locked --all-features
2124

2225
test:
2326
rm -rf $(TEST_DEST_DIR)

0 commit comments

Comments
 (0)
Please sign in to comment.