File: Makefile

package info (click to toggle)
golang-github-fsmiamoto-git-todo-parser 0.0.5%2Bgit20240618.3061a9b-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: makefile: 8
file content (9 lines) | stat: -rw-r--r-- 83 bytes parent folder | download
1
2
3
4
5
6
7
8
9
GO := $(shell which go)

all: build

test:
	$(GO) test -v ./...


.PHONY: all test