mirror of
https://github.com/danog/parser.git
synced 2024-11-26 20:04:57 +01:00
e7be510d51
Signed-off-by: azjezz <azjezz@protonmail.com>
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# If the first argument is "dump"...
|
|
ifeq (dump,$(firstword $(MAKECMDGOALS)))
|
|
# use the rest as arguments for "dump"
|
|
DUMP_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
|
# ...and turn them into do-nothing targets
|
|
$(eval $(DUMP_ARGS):;@:)
|
|
endif# If the first argument is "dump"...
|
|
|
|
# If the first argument is "dump"...
|
|
ifeq (test,$(firstword $(MAKECMDGOALS)))
|
|
# use the rest as arguments for "dump"
|
|
TEST_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
|
# ...and turn them into do-nothing targets
|
|
$(eval $(TEST_ARGS):;@:)
|
|
endif# If the first argument is "dump"...
|
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
lint: ## lint code for formatting issues.
|
|
cargo fmt --all -- --check
|
|
cargo clippy
|
|
|
|
fix: ## fix linting problems.
|
|
cargo fmt
|
|
cargo clippy --fix --allow-dirty --allow-staged
|
|
|
|
dump: ## dump AST for given files.
|
|
cargo run --bin php-parser-rs -- $(DUMP_ARGS)
|
|
|
|
snapshot: ## dump a snapshot for intergration tests.
|
|
cargo run --bin snapshot
|
|
|
|
test: ## run integration tests.
|
|
BUILD_INTEGRATION_TESTS="1" cargo build
|
|
cargo test --all $(TEST_ARGS) -- --skip third_party
|
|
|
|
test-third-party: ## run integration tests against third-party libraries.
|
|
BUILD_INTEGRATION_TESTS="1" cargo build
|
|
cargo test third_party
|