Files
darkfi/script/evgrd/Makefile
Paul Otten 721502a468 Move from "nightly" toolchain to "stable".
Intended to address tau RefID "Gifn1u".

There are still a few things that require nightly.
- cargo +nightly fmt
- fuzzing
2025-04-14 19:42:15 -04:00

15 lines
136 B
Makefile

.POSIX:
# Cargo binary
CARGO = cargo
BIN = evgrd
all: $(BIN)
evgrd:
$(CARGO) run --bin evgrd --features=build-daemon
.PHONY: all