aboutsummaryrefslogtreecommitdiff
path: root/xS/Makefile
blob: 57927fa2008c697f7b1f0c9fbd81d7e70a95dbd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.POSIX:
.SUFFIXES:
AWK = env LC_ALL=C awk

outputs = xS xS-replies.go xS.1
all: $(outputs)

xS: xS.go ../xK-version xS-replies.go
	go build -ldflags "-X 'main.projectVersion=$$(cat ../xK-version)'" -o $@
xS-replies.go: xS-gen-replies.awk xS-replies
	$(AWK) -f xS-gen-replies.awk xS-replies > $@
xS.1: ../xK-version ../liberty/tools/asciiman.awk xS.adoc
	env "asciidoc-release-version=$$(cat ../xK-version)" \
		$(AWK) -f ../liberty/tools/asciiman.awk xS.adoc > $@
test: all
	go test
clean:
	rm -f $(outputs)