Skip to content

Commit e58a9e1

Browse files
committed
Remove verbose option
1 parent 4c3e474 commit e58a9e1

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

Makefile

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
1-
# Use 'verbose=1' to echo all commands, for example 'make help verbose=1'.
2-
ifdef verbose
3-
Q :=
4-
else
5-
Q := @
6-
endif
7-
81
precommit:
9-
$(Q)sh .githooks/pre-push
2+
@sh .githooks/pre-push
103

114
clean:
12-
$(Q)cargo clean
5+
cargo clean
136

147
rebase-bitcoin-v0.29:
15-
$(Q)git checkout bitcoin-v0.29
16-
$(Q)git rebase master
17-
$(Q)git push origin --force-with-lease && git push upstream --force-with-lease
18-
$(Q)git checkout master
8+
git checkout bitcoin-v0.29
9+
git rebase master
10+
git push origin --force-with-lease && git push upstream --force-with-lease
11+
git checkout master
1912

2013
loc:
21-
$(Q)echo "--- Counting lines of .rs files (LOC):" && find crates/ bindings/ -type f -name "*.rs" -exec cat {} \; | wc -l
14+
@echo "--- Counting lines of .rs files (LOC):" && find crates/ bindings/ -type f -name "*.rs" -exec cat {} \; | wc -l

0 commit comments

Comments
 (0)