File: makefile

package info (click to toggle)
golang-github-denisbrodbeck-machineid 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 172 kB
  • sloc: makefile: 22
file content (12 lines) | stat: -rw-r--r-- 162 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: build clean default test

build: clean
	@go build -o machineid ./cmd/machineid/main.go

clean:
	@rm -rf ./machineid

test:
	go test ./...

default: build