-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (19 loc) · 593 Bytes
/
Makefile
File metadata and controls
26 lines (19 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
all: install snippets grammar
test:
go vet ./...
go test -cover ./...
unused:
# go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
install: test q
# quickly get me a new binary
q:
go install github.com/emicklei/melrose/cmd/melrose
snippets:
cd cmd/vsc && go run *.go snippets > ../../../melrose-for-vscode/snippets/snippets.json
grammar:
cd cmd/vsc && go run *.go grammar \
../../../melrose-for-vscode/syntaxes/melrose.tmGrammar.json.template \
../../../melrose-for-vscode/syntaxes/melrose.tmGrammar.json
since:
git log --oneline v0.55.1..@ > since.log