]> ruderich.org/simon Gitweb - safcm/safcm.git/blob - Makefile
Revert "ci: run tests with verbose output"
[safcm/safcm.git] / Makefile
1 LDFLAGS = '\
2     -X "main.versionGit=$(shell git describe --long --tags --dirty --always)" \
3     -X "main.versionGo=$(shell go version)" \
4 '
5 # Build with `make GOFLAGS=` if -race is not supported
6 GOFLAGS=-race
7
8
9 all: safcm
10
11 safcm:
12         go fmt ./...
13         cd cmd/safcm-remote && ./build.sh
14         go build $(GOFLAGS) -ldflags $(LDFLAGS) ruderich.org/simon/safcm/cmd/safcm
15         @# For proper permissions after initial clone with a strict umask
16         cd cmd/safcm/testdata/project && ../../../../safcm fixperms 2> /dev/null
17
18 test:
19         go vet ./...
20         go test $(GOFLAGS) ./...
21
22 clean:
23         rm -rf remote/helpers/
24         rm -f safcm
25
26 .PHONY: all test clean safcm