Revision 33d7c84a7bc3d86211b8e397b1c2d079bdfb6bb4 authored by martoon on 12 October 2023, 13:31:00 UTC, committed by martoon on 09 November 2023, 15:57:30 UTC
At first, I didn't write logs assuming that they will be highly
available. Actually they are, and we could log more.

So here I at least log the result.
1 parent a371e92
Raw File
Makefile
# SPDX-FileCopyrightText: 2023 Marigold <contact@marigold.dev>
# SPDX-FileCopyrightText: 2023 TriliTech <contact@trili.tech>
#
# SPDX-License-Identifier: MIT

.PHONY: all
all: build check test

.PHONY: build
build:
	@cargo build --release --target wasm32-unknown-unknown --example sequenced_kernel

.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