File: GNUmakefile

package info (click to toggle)
golang-go.gearno-encoding-base58 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 126 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
BIN_DIR = $(CURDIR)/bin

all: test

vet:
	go vet ./...

test: FORCE
	go test -cover -race ./...

FORCE:

.PHONY: all vet test