mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 22:28:12 -05:00
Intended to address tau RefID "Gifn1u". There are still a few things that require nightly. - cargo +nightly fmt - fuzzing
15 lines
136 B
Makefile
15 lines
136 B
Makefile
.POSIX:
|
|
|
|
# Cargo binary
|
|
CARGO = cargo
|
|
|
|
BIN = evgrd
|
|
|
|
all: $(BIN)
|
|
|
|
evgrd:
|
|
$(CARGO) run --bin evgrd --features=build-daemon
|
|
|
|
.PHONY: all
|
|
|