Skip to content

Commit

Permalink
Merge pull request #31 from zorp-corp/sigilante/Makefile
Browse files Browse the repository at this point in the history
Hotfix Makefile
  • Loading branch information
sigilante authored Jan 21, 2025
2 parents 5001ef5 + bbf2998 commit b022c28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ release: build-release

.PHONY: release-test-zero
release-test-zero:
cargo run $(PROFILE_RELEASE) -- --new test-n 0
RUST_LOG=TRACE cargo run $(PROFILE_RELEASE) -- --new test-n 0

.PHONY: release-test-all
release-test-all:
cargo run $(PROFILE_RELEASE) -- --new exec-all
RUST_LOG=TRACE cargo run $(PROFILE_RELEASE) -- --new exec-all

-: ## -----------------------------------------------------------
-: ## ---------- Rest of the commands in the Makefile -----------
Expand All @@ -45,28 +45,28 @@ release-test-all:
build-dev-fast: ## Slower to compile, faster to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo hoon/main.hoon hoon; \
# mv out.jam assets/jocktest.jam; \
mv out.jam assets/jocktest.jam; \
cargo build $(PROFILE_DEV_FAST)

.PHONY: build-parallel
build-parallel: ## profiling profile with parallel feature enabled
@set -e; \
./choo hoon/main.hoon hoon; \
# mv out.jam assets/jocktest.jam; \
mv out.jam assets/jocktest.jam; \
cargo build $(FEATURES_PARALLEL) $(PROFILE_PROFILING)

.PHONY: build
build-dev-debug: ## Fast to compile, slow to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo --new --log-level trace hoon/main.hoon hoon; \
# mv out.jam assets/jocktest.jam; \
mv out.jam assets/jocktest.jam; \
cargo build

.PHONY: build-release
build-release: ## Slowest to compile, fastest to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo hoon/main.hoon hoon; \
# mv out.jam assets/jocktest.jam; \
mv out.jam assets/jocktest.jam; \
cargo build $(PROFILE_RELEASE)

.PHONY: update-choo
Expand Down

0 comments on commit b022c28

Please sign in to comment.