1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2024-11-26 01:15:40 +00:00
sl-feeds/vendor/github.com/BurntSushi/toml/Makefile
Vincent Batts 1e64d04b15
go: include the whole vendor directory
Not great, but gcc-go 1.14.4 is not picking up the go.mod file on the
first `go get`

Fixes #16

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2021-02-16 15:32:01 -05:00

19 lines
289 B
Makefile

install:
go install ./...
test: install
go test -v
toml-test toml-test-decoder
toml-test -encoder toml-test-encoder
fmt:
gofmt -w *.go */*.go
colcheck *.go */*.go
tags:
find ./ -name '*.go' -print0 | xargs -0 gotags > TAGS
push:
git push origin master
git push github master