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.

26 lines
655 B

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