File: Makefile

package info (click to toggle)
golang-github-k0swe-wsjtx-go 4.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: makefile: 15
file content (11 lines) | stat: -rw-r--r-- 130 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: all
all: test

.PHONY: clean
clean:
	rm ../golang-github-k0swe-wsjtx-go*

.PHONY: test
test:
	go test ./...
	go vet ./...