1
0
Fork 0
roguelike-game/Makefile

51 lines
2.1 KiB
Makefile
Raw Permalink Normal View History

include help-system.mk
FEATURES?=default
run: $(call print-help, run, Runs the binary in develop mode)
cargo run --features $(FEATURES) --no-default-features
run-debug: $(call print-help, run-debug, Runs the binary with the 'debug' feature, which shows map generation, and other debug functionality)
cargo run --features debug
2021-12-01 11:03:27 -05:00
run-pi: $(call print-help, run-pi, Sets appropriate flags so that the game runs on a Raspberry Pi)
MESA_GL_VERSION_OVERRIDE=3.0 MESA_GLSL_VERSION_OVERRIDE=330 cargo run --features $(FEATURES)
run-curses: $(call print-help, run-curses, Run the game in a console window via the curses library)
cargo run --features curses --no-default-features
build:
cargo build
build-wasm: $(call print-help, build-wasm, Build the webassembly version of the game)
cargo build --release --target wasm32-unknown-unknown --features wasm
wasm-bindgen target/wasm32-unknown-unknown/release/roguelike_tutorial.wasm --out-dir wasm --no-modules --no-typescript
build-wasm-dev: $(call print-help, build-wasm-dev, Build the webassembly version of the game (dev version))
cargo build --target wasm32-unknown-unknown --features wasm,debug
wasm-bindgen target/wasm32-unknown-unknown/debug/roguelike_tutorial.wasm --out-dir wasm --no-modules --no-typescript
clean: $(call print-help, clean, Removes save file and compilation artifacts)
2021-12-24 14:27:44 -05:00
rm -f savegame.json
cargo clean
check: $(call print-help, check, Check code syntax)
cargo check --features $(FEATURES)
2021-12-01 11:42:17 -05:00
check-wasm: $(call print-help, check-wasm, Check code syntax for webassembly build)
cargo check --target wasm32-unknown-unknown --features wasm
lint: $(call print-help, lint, Check code syntax and style)
cargo clippy --features $(FEATURES)
2021-11-19 11:32:03 -05:00
fmt: $(call print-help, fmt, Runs formatter on code)
2021-12-10 20:16:48 -05:00
cargo +nightly fmt
fix: $(call print-help, fix, Fixes some warnings, then runs the formatter)
2021-12-01 11:03:27 -05:00
cargo fix --allow-dirty --allow-staged
make fmt
2021-12-01 11:03:27 -05:00
docs: $(call print-help, docs, Generates code docs)
2022-02-10 11:54:57 -05:00
cargo doc --features $(FEATURES) --document-private-items
2022-01-21 15:55:13 -05:00
.phony: run-pi clean check run fmt fix lint docs build build-wasm check-wasm build-wasm-dev