Skip to content

Commit 07f2d00

Browse files
committed
Merge branch 'v0.3.X-alpha' into 'main'
v0.3.0-alpha makefile update See merge request git-user-cpp/rapid_naive_sql!2
2 parents f535878 + f0a0def commit 07f2d00

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Makefile

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ help:
66
clean: ## Clean the project using cargo
77
cargo clean
88

9-
build: ## Build the project using cargo
10-
cargo build
11-
129
lint: ## Lint the project using cargo
1310
cargo clippy
1411

@@ -20,5 +17,17 @@ all: ## Use everything at once
2017
cargo fmt
2118
cargo build
2219

20+
check: ## Check the project using cargo
21+
cargo check
22+
23+
build: ## Build the project using cargo
24+
cargo build
25+
26+
build-release: ## Build the release using cargo
27+
cargo build --release
28+
2329
run: ## Run the project
24-
cargo run
30+
cargo run
31+
32+
run-release: ## Run the release project
33+
cargo run --release

0 commit comments

Comments
 (0)