contract: Match only .rs files for make dependencies.

This commit is contained in:
parazyd
2023-08-13 15:32:14 +02:00
committed by parazyd
parent 988455f79b
commit e421b08512
4 changed files with 8 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ PROOFS_BIN = $(PROOFS_SRC:=.bin)
# wasm source files
WASM_SRC = \
$(shell find src -type f) \
$(shell find ../../sdk -type f) \
$(shell find ../../serial -type f)
$(shell find ../../sdk -type f -name '*.rs') \
$(shell find ../../serial -type f -name '*.rs')
# wasm contract binary
WASM_BIN = consensus_contract.wasm

View File

@@ -13,8 +13,8 @@ PROOFS_BIN = $(PROOFS_SRC:=.bin)
# wasm source files
WASM_SRC = \
$(shell find src -type f) \
$(shell find ../../sdk -type f) \
$(shell find ../../serial -type f)
$(shell find ../../sdk -type f -name '*.rs') \
$(shell find ../../serial -type f -name '*.rs')
# wasm contract binary
WASM_BIN = dao_contract.wasm

View File

@@ -13,8 +13,8 @@ PROOFS_BIN = $(PROOFS_SRC:=.bin)
# wasm source files
WASM_SRC = \
$(shell find src -type f) \
$(shell find ../../sdk -type f) \
$(shell find ../../serial -type f)
$(shell find ../../sdk -type f -name '*.rs') \
$(shell find ../../serial -type f -name '*.rs')
# wasm contract binary
WASM_BIN = deployooor_contract.wasm

View File

@@ -13,8 +13,8 @@ PROOFS_BIN = $(PROOFS_SRC:=.bin)
# wasm source files
WASM_SRC = \
$(shell find src -type f) \
$(shell find ../../sdk -type f) \
$(shell find ../../serial -type f)
$(shell find ../../sdk -type f -name '*.rs') \
$(shell find ../../serial -type f -name '*.rs')
# wasm contract binary
WASM_BIN = money_contract.wasm