mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
13 lines
180 B
Makefile
13 lines
180 B
Makefile
.POSIX:
|
|
|
|
# Maturin binary
|
|
MATURIN = maturin
|
|
|
|
all:
|
|
$(MATURIN) build --release
|
|
@echo "You can install this wheel with make install"
|
|
dev:
|
|
$(MATURIN) develop --release
|
|
|
|
.PHONY: all
|