mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
13 lines
245 B
Makefile
13 lines
245 B
Makefile
LINGUIST_PATH = .linguist
|
|
|
|
$(LINGUIST_PATH):
|
|
git clone https://github.com/github/linguist.git $@
|
|
|
|
test: $(LINGUIST_PATH)
|
|
go test -v ./...
|
|
|
|
code-generate: $(LINGUIST_PATH)
|
|
go run internal/code-generator/main.go
|
|
|
|
clean:
|
|
rm -rf $(LINGUIST_PATH)
|