summaryrefslogtreecommitdiffstats
path: root/tool/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tool/Makefile')
-rw-r--r--tool/Makefile13
1 files changed, 5 insertions, 8 deletions
diff --git a/tool/Makefile b/tool/Makefile
index 517f705e..7cd3bd1f 100644
--- a/tool/Makefile
+++ b/tool/Makefile
@@ -1,13 +1,10 @@
CARGO ?= cargo
SQ ?= ../target/debug/sq
+SQV ?= ../target/debug/sqv
-all: sq src/usage.rs
+all: src/sq-usage.rs src/sqv-usage.rs
-sq: ../target/debug/sq
-
-.PHONY: ../target/debug/sq
-../target/debug/sq:
- $(CARGO) build
-
-src/usage.rs: make-usage.sh $(SQ)
+src/sq-usage.rs: make-usage.sh $(SQ)
sh make-usage.sh $(SQ) >$@
+src/sqv-usage.rs: make-usage.sh $(SQV)
+ sh make-usage.sh $(SQV) >$@