We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a700a commit 6ac0a89Copy full SHA for 6ac0a89
Makefile
@@ -37,6 +37,7 @@ export BUILD_DIR
37
38
default: build test
39
40
+# Note that contract names are sorted so 'c-*' builds before 'hybrid-*'
41
build:
42
@if [ "x$(CLEAN_BUILD_DIR_FIRST)" = "xtrue" ]; then \
43
echo "Cleaning $(BUILD_DIR) directory..."; \
@@ -48,7 +49,6 @@ build:
48
49
for crate in $(wildcard crates/*); do \
50
cargo build -p $$(basename $$crate) $(MODE_ARGS) $(CARGO_ARGS); \
51
done; \
- # Sort by contract names here so 'c-*' builds before 'hybrid-*' \
52
for contract in $(sort $(wildcard contracts/*)); do \
53
$(MAKE) -e -C $$contract build; \
54
0 commit comments