blob: 5f33e91743f9cefb5b80460d1f9e0baad112321f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
GO = go
SCDOC = scdoc
LDFLAGS = "-s -w"
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
all:
$(GO) build
fmt:
$(GO) fmt
clean:
rm -f shoelaces docs/shoelaces.8
shoelaces.8:
$(SCDOC) < docs/shoelaces.8.scd > docs/shoelaces.8
docs: shoelaces.8
test: fmt
$(GO) test -v $(pkgs) && \
./test/integ-test/integ_test.py
.PHONY: all clean docs
binaries: linux windows
linux:
GOOS=linux ${GO} build -o bin/shoelaces -ldflags ${LDFLAGS}
windows:
GOOS=windows ${GO} build -o bin/shoelaces.exe -ldflags ${LDFLAGS}
|