Skip to content

Commit

Permalink
feat: add Makefile to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
jpraynaud committed Apr 8, 2024
1 parent ecc6119 commit 188a5ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
.PHONY: all build test check doc bench

CARGO = cargo
BINARY = digitsum

all: test build

build:
${CARGO} build --release

run:
${CARGO} run --release
cp target/release/${BINARY} .

test:
${CARGO} test --features default
Expand All @@ -23,3 +22,4 @@ doc:

bench:
${CARGO} bench --features default --verbose

2 changes: 1 addition & 1 deletion src/commands/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl GraphCommand {
let root =
BitMapBackend::new(&graph_export_path, graph_layout_dimensions).into_drawing_area();
root.fill(&WHITE)?;
let root = root.titled(graph_layout_title, ("sans-serif", 60))?;
let root = root.titled(graph_layout_title, ("sans-serif", 30))?;

halo2_proofs::dev::CircuitLayout::default()
.show_labels(self.graph_with_labels)
Expand Down

0 comments on commit 188a5ab

Please sign in to comment.