Hush lite wallet https://faq.hush.is/sdl
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.

24 lines
585 B

5 years ago
ifeq ($(shell uname),Darwin)
EXT := dylib
else
EXT := a
endif
all: release
5 years ago
winrelease: target/x86_64-pc-windows-gnu/release/silentdragonlite.lib
5 years ago
5 years ago
target/x86_64-pc-windows-gnu/release/silentdragonlite.lib: src/lib.rs Cargo.toml
5 years ago
cargo build --lib --release --target x86_64-pc-windows-gnu
5 years ago
release: target/release/silentdragonlite.$(EXT)
debug: target/debug/silentdragonlite.$(EXT)
5 years ago
5 years ago
target/release/silentdragonlite.$(EXT): src/lib.rs Cargo.toml
5 years ago
cargo build --lib --release
5 years ago
target/debug/silentdragonlite.$(EXT): src/lib.rs Cargo.toml
5 years ago
cargo build --lib
clean:
rm -rf target