File: Makefile

package info (click to toggle)
golang-github-lightstep-lightstep-tracer-common 1.1.0%2Bgit20210210.a8dfcb8-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 428 kB
  • sloc: makefile: 68
file content (9 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
GO = GO111MODULE=on GOPROXY=https://proxy.golang.org go

.PHONY: test
test:
	${GO} test ./...

.PHONY: clean
clean:
	${GO} clean ./...