summaryrefslogtreecommitdiffstats
path: root/tool/Makefile
blob: 517f705e06d1e1a55eae4939aac352f3b29e85cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CARGO	?= cargo
SQ	?= ../target/debug/sq

all: sq src/usage.rs

sq: ../target/debug/sq

.PHONY: ../target/debug/sq
../target/debug/sq:
	$(CARGO) build

src/usage.rs: make-usage.sh $(SQ)
	sh make-usage.sh $(SQ) >$@