File: Makefile

package info (click to toggle)
golang-github-cavaliergopher-grab 3.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 264 kB
  • sloc: makefile: 32
file content (17 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
GO = go
GOGET = $(GO) get -u

all: check

check:
	cd v3 && $(GO) test -v -cover -race ./...
	cd v3/cmd/grab && $(MAKE) -B all

install:
	cd v3/cmd/grab && $(MAKE) install

clean:
	cd v3 && $(GO) clean -x ./...
	rm -rvf ./.test*

.PHONY: all check install clean