File: Makefile

package info (click to toggle)
golang-github-azure-go-autorest 14.2.0%2Bgit20220726.711dde1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,320 kB
  • sloc: makefile: 15
file content (17 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DIR?=./autorest/

default: build

build: fmt
	cd $(DIR); go install

test:
	cd $(DIR); go test -v

vet:
	cd $(DIR); go vet

fmt:
	gofmt -w $(DIR)

.PHONY: build test vet fmt