mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
14 lines
226 B
Makefile
14 lines
226 B
Makefile
PROOF_SRC = $(shell find proof -type f -name '*.zk')
|
|
PROOF_BIN = $(PROOF_SRC:=.bin)
|
|
|
|
ZKAS = ../../zkas
|
|
|
|
dao: $(PROOF_BIN)
|
|
RUST_LOG=debug cargo run --release
|
|
|
|
proof/%.zk.bin: proof/%.zk
|
|
$(ZKAS) $<
|
|
|
|
clean:
|
|
rm -f $(PROOF_BIN)
|