File tree Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -46,21 +46,10 @@ build:
46
46
done ; \
47
47
else \
48
48
$(MAKE ) -e -C contracts/$(CONTRACT ) build; \
49
- fi
50
-
51
- build-simulator :
52
- @set -eu; \
53
- if [ ! -d native-simulators ] || [ -z " $$ (ls -A native-simulators)" ]; then \
54
- echo " There is no native-simulator to compile." ; \
55
- echo " If necessary, please use:" ; \
56
- echo " make generate-native-simulator CRATE=<existing contract>" ; \
57
- else \
58
- mkdir -p $(BUILD_DIR ) ; \
59
- for sim in $( wildcard native-simulators/* ) ; do \
60
- cd $$ sim && cargo build && cd ../..; \
61
- done ; \
62
- cp target/debug/* _sim.* $(BUILD_DIR ) ; \
63
- fi
49
+ fi ; \
50
+ for sim in $( wildcard native-simulators/* ) ; do \
51
+ cd $$ sim && cargo build && cd ../..; \
52
+ done ; \
64
53
65
54
# Run a single make task for a specific contract. For example:
66
55
#
You can’t perform that action at this time.
0 commit comments