mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
15 lines
145 B
Makefile
15 lines
145 B
Makefile
.POSIX:
|
|
|
|
# Cargo binary
|
|
CARGO = cargo +nightly
|
|
|
|
BIN = evgrd
|
|
|
|
all: $(BIN)
|
|
|
|
evgrd:
|
|
$(CARGO) run --bin evgrd --features=build-daemon
|
|
|
|
.PHONY: all
|
|
|