Skip to content

Commit 247f330

Browse files
committed
feature(protocol-config): add and update makefiles
1 parent 5a198f5 commit 247f330

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ COMPONENTS = mithril-aggregator mithril-client mithril-client-cli mithril-client
33
internal/mithril-build-script internal/mithril-cli-helper internal/mithril-doc \
44
internal/mithril-dmq \
55
internal/mithril-doc-derive internal/mithril-era internal/mithril-metric internal/mithril-persistence \
6+
internal/mithril-protocol-config \
67
internal/mithril-resource-pool internal/mithril-ticker \
78
internal/cardano-node/mithril-cardano-node-chain internal/cardano-node/mithril-cardano-node-internal-database \
89
internal/signed-entity/mithril-signed-entity-lock internal/signed-entity/mithril-signed-entity-preloader \
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.PHONY: all build test check doc
2+
3+
CARGO = cargo
4+
5+
all: test build
6+
7+
build:
8+
${CARGO} build --release
9+
10+
test:
11+
${CARGO} test
12+
13+
check:
14+
${CARGO} check --release --all-features --all-targets
15+
${CARGO} clippy --release --all-features --all-targets
16+
${CARGO} fmt --check
17+
18+
doc:
19+
${CARGO} doc --no-deps --open

0 commit comments

Comments
 (0)