tartrazine/Makefile

13 lines
245 B
Makefile
Raw Normal View History

2017-04-05 16:38:42 +00:00
LINGUIST_PATH = .linguist
2016-07-13 20:21:18 +00:00
2017-04-05 16:38:42 +00:00
$(LINGUIST_PATH):
2017-04-05 17:27:19 +00:00
git clone https://github.com/github/linguist.git $@
2017-04-05 16:38:42 +00:00
test: $(LINGUIST_PATH)
go test -v ./...
code-generate: $(LINGUIST_PATH)
go run internal/code-generator/main.go
clean:
rm -rf $(LINGUIST_PATH)