Öffentliche Dateiansicht: Raw-Dateien, Tree, Releases und Issues sind ohne Login verfügbar.
Makefile Raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
.PHONY: build install run tidy

build:
	go build -ldflags="-s -w -X main.version=v$(shell cat VERSION)" -o ev .

install:
	go install .

run:
	go run . $(ARGS)

tidy:
	go mod tidy