https://gitlab.com/tezos/tezos
Raw File
Tip revision: bfe7170a4b19b1ad47bbae34aa8bd49142cdae7c authored by Alain Mebsout on 01 June 2023, 10:59:15 UTC
DAC/Client: move observer client out of proto dir
Tip revision: bfe7170
Makefile
# SPDX-FileCopyrightText: 2023 Marigold <contact@marigold.dev>
#
# SPDX-License-Identifier: MIT

.PHONY: all
all: build check test

.PHONY: build
build:
	@cargo build --release

.PHONY: check
check:
	@cargo fmt --check
	@cargo clippy --all-targets -- --deny warnings

.PHONY: build-deps
build-deps:

.PHONY: build-dev-deps
build-dev-deps:
	@rustup component add rustfmt clippy

.PHONY: test
test:
	@cargo test

.PHONY: clean
clean:
	@cargo clean
back to top