-
Notifications
You must be signed in to change notification settings - Fork 28
/
Makefile
45 lines (35 loc) · 1.77 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Version required by `proj` crate used in cargo.toml
PROJ_VERSION = 9.3.0
install_proj_deps: ## Install dependencies the proj crate needs in order to build libproj from source
sudo apt update
sudo apt install -y clang # clang >=3.9 is required
# Needed only for proj install
sudo apt install -y wget build-essential pkg-config sqlite3 libsqlite3-dev libtiff-dev libcurl4-nss-dev
install_proj: install_proj_deps ## Install PROJ on system (avoid PROJ recompiling for cargo clean if using proj crate)
# remove PROJ system version from packages
sudo apt remove libproj-dev
wget https://github.com/OSGeo/proj.4/releases/download/$(PROJ_VERSION)/proj-$(PROJ_VERSION).tar.gz
tar -xzvf proj-$(PROJ_VERSION).tar.gz
cd proj-$(PROJ_VERSION) \
&& mkdir build \
&& cd build \
&& cmake .. \
&& cmake --build . -j11 \
&& sudo cmake --build . --target install
rm -rf proj-$(PROJ_VERSION) proj-$(PROJ_VERSION).tar.gz
fmt: format ## Check formatting of the code (alias for 'format')
format: ## Check formatting of the code
cargo fmt --all -- --check
clippy: lint ## Check quality of the code (alias for 'lint')
lint: ## Check quality of the code
cargo clippy --workspace --all-features --all-targets -- --warn clippy::cargo --allow clippy::multiple_crate_versions --deny warnings
test: ## Launch all tests
# Run all the tests of `transit_model` in the entire repository.
# First activating all features (including `xmllint`)
cargo test --workspace --all-features
# Then without features
cargo test --workspace
help: ## Print this help message
@grep -E '^[a-zA-Z_-]+:.*## .*$$' $(CURDIR)/$(firstword $(MAKEFILE_LIST)) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: install_proj_deps install_proj fmt format clippy lint test help
.DEFAULT_GOAL := help