Paper wallet for Hush, which you can use with no internet access while wearing a tinfoil hat inside of a Faraday cage. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
298 B

ifeq ($(shell uname),Darwin)
EXT := dylib
else
EXT := a
endif
all: target/debug/zecpaperrust.$(EXT)
g++ src/main.cpp -L./target/debug -lzecpaperrust -lpthread -ldl -o run
./run
target/debug/zecpaperrust.$(EXT): src/lib.rs Cargo.toml
cargo build --lib
clean:
rm -rf target
rm -rf run