2024-03-29 14:08:15 +01:00
|
|
|
.POSIX:
|
|
|
|
.SUFFIXES:
|
|
|
|
|
|
|
|
version = dev
|
|
|
|
outputs = acid acid.1
|
|
|
|
all: $(outputs)
|
|
|
|
|
2024-12-26 00:40:58 +01:00
|
|
|
acid: acid.go terminal.go
|
2024-03-29 14:08:15 +01:00
|
|
|
go build -ldflags "-X 'main.projectVersion=$(version)'" -o $@
|
|
|
|
acid.1: acid.adoc
|
2024-12-24 15:43:35 +01:00
|
|
|
asciidoctor -b manpage -a release-version=$(version) -o $@ acid.adoc || \
|
|
|
|
a2x -d manpage -f manpage -a release-version=$(version) acid.adoc
|
2024-04-16 07:38:23 +02:00
|
|
|
test: all
|
|
|
|
go test
|
2024-03-29 14:08:15 +01:00
|
|
|
clean:
|
|
|
|
rm -f $(outputs)
|