File: Makefile

package info (click to toggle)
golang-github-weppos-publicsuffix-go 0.30.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: makefile: 16; sh: 9
file content (13 lines) | stat: -rw-r--r-- 130 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
.DEFAULT_GOAL := test

test:
	go test ./... -v

gen:
	go generate ./...

clean:
	rm publicsuffix/rules.*

get-deps:
	go get ./...