mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
Instead, check if the binary was built beforehand with an if clause. This helps avoid rebuilding the project as root by accident.
82 lines
2.0 KiB
Makefile
82 lines
2.0 KiB
Makefile
.POSIX:
|
|
|
|
# Install prefix
|
|
PREFIX = /usr/local
|
|
|
|
# Cargo binary
|
|
CARGO = cargo
|
|
|
|
# Flags passed to cargo/rustc
|
|
#RUSTFLAGS = -C target-cpu=native
|
|
|
|
# Binaries to be built
|
|
BINS = zkas drk darkfid tau taud ircd dnetview
|
|
|
|
# Common dependencies which should force the binaries to be rebuilt
|
|
BINDEPS = \
|
|
Cargo.toml \
|
|
$(shell find bin/*/src -type f) \
|
|
$(shell find bin -type f -name '*.toml') \
|
|
$(shell find src -type f) \
|
|
$(shell find script/sql -type f) \
|
|
$(shell find contrib/token -type f)
|
|
|
|
all: $(BINS)
|
|
|
|
token_lists:
|
|
$(MAKE) -C contrib/token all
|
|
|
|
$(BINS): token_lists $(BINDEPS)
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) build --all-features --release --package $@
|
|
cp -f target/release/$@ $@
|
|
|
|
check: token_lists
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) hack check --release --feature-powerset --all
|
|
|
|
fix: token_lists
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clippy --release --all-features --fix --allow-dirty --all
|
|
|
|
clippy: token_lists
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clippy --release --all-features --all
|
|
|
|
rustdoc: token_lists
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) doc --release --workspace --all-features \
|
|
--no-deps --document-private-items
|
|
|
|
# zkas source files which we want to compile for tests
|
|
VM_SRC = proof/arithmetic.zk proof/mint.zk proof/burn.zk example/simple.zk
|
|
VM_BIN = $(VM_SRC:=.bin)
|
|
|
|
$(VM_BIN): zkas $(VM_SRC)
|
|
./zkas $(basename $@) -o $@
|
|
|
|
test: token_lists $(VM_BIN) test-tx
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) test --release --all-features --all
|
|
|
|
test-tx:
|
|
RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) run --release --features=node,zkas --example tx
|
|
|
|
clean:
|
|
rm -f $(BINS)
|
|
|
|
install:
|
|
@for i in $(BINS); \
|
|
do \
|
|
if test ! -f $$i; \
|
|
then \
|
|
echo "The '$$i' binary was not built."; \
|
|
echo "You should run 'make BINS=$$i' as a normal user before installing."; \
|
|
exit 1; \
|
|
fi; \
|
|
done;
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
cp -f $(BINS) $(DESTDIR)$(PREFIX)/bin
|
|
|
|
uninstall:
|
|
for i in $(BINS); \
|
|
do \
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/$$i; \
|
|
done;
|
|
|
|
.PHONY: all check fix clippy rustdoc test test-tx clean install uninstall
|