Clear libs before build

This commit is contained in:
Aditya Kulkarni 2019-10-27 11:43:31 -07:00
parent d0ace720ed
commit 431e907229
1 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@ 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
LIBS="" CFLAGS=$(CFLAGS) cargo build --lib --release
target/debug/zecwalletlite.$(EXT): src/lib.rs Cargo.toml
CFLAGS=$(CFLAGS) cargo build --lib
LIBS="" CFLAGS=$(CFLAGS) cargo build --lib
clean:
rm -rf target