File: Makefile

package info (click to toggle)
golang-github-euank-go-kmsg-parser 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 112 kB
  • sloc: makefile: 12
file content (12 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all godmesg test test-deps

all: godmesg

godmesg:
	go build -o ./bin/godmesg ./cmd/godmesg

test:
	go test -v ./...

test-deps:
	go get github.com/stretchr/testify/assert