summaryrefslogtreecommitdiffstats
path: root/tool/Makefile
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-26 17:24:47 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-26 19:50:41 +0100
commit02e61f0758e93b44a054a01b4137ea25ff7dd5ec (patch)
treeb1ef6b097e5fc93faf20433219565bbabfa04fb5 /tool/Makefile
parent557aca35bad457622642308c1d780757b174bf50 (diff)
sqv: Move sqv into a new crate.
- This allows us to use sequoia-openpgp without compression support reducing binary size and trusted computing base.
Diffstat (limited to 'tool/Makefile')
-rw-r--r--tool/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/tool/Makefile b/tool/Makefile
index 53df7de5..0d90b3cd 100644
--- a/tool/Makefile
+++ b/tool/Makefile
@@ -3,14 +3,12 @@ CARGO_TARGET_DIR ?= $(shell pwd)/../target
# We currently only support absolute paths.
CARGO_TARGET_DIR := $(abspath $(CARGO_TARGET_DIR))
SQ ?= $(CARGO_TARGET_DIR)/debug/sq
-SQV ?= $(CARGO_TARGET_DIR)/debug/sqv
-all: src/sq-usage.rs src/sqv-usage.rs
+all: src/sq-usage.rs
+# Maintenance.
.PHONY: update-usage
-update-usage: src/sq-usage.rs src/sqv-usage.rs
+update-usage: src/sq-usage.rs
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) >$@