Skip to content

Commit 4903ba5

Browse files
authored
Merge pull request #540 from wking/install-esc
Makefile: Add .install.esc and make it part of install.tools
2 parents add48be + 92f6ce6 commit 4903ba5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ DOC_FILENAME ?= oci-image-spec
4040

4141
EPOCH_TEST_COMMIT ?= v0.2.0
4242

43+
TOOLS := esc gitvalidation glide glide-vc
44+
4345
default: check-license lint test
4446

4547
help:
@@ -111,7 +113,10 @@ else
111113
git-validation -v -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..HEAD
112114
endif
113115

114-
install.tools: .install.gitvalidation .install.glide .install.glide-vc
116+
install.tools: $(TOOLS:%=.install.%)
117+
118+
.install.esc:
119+
go get -u github.com/mjibson/esc
115120

116121
.install.gitvalidation:
117122
go get -u github.com/vbatts/git-validation
@@ -126,6 +131,7 @@ clean:
126131
rm -rf *~ $(OUTPUT_DIRNAME) header.html
127132

128133
.PHONY: \
134+
$(TOOLS:%=.install.%) \
129135
validate-examples \
130136
check-license \
131137
clean \

0 commit comments

Comments
 (0)