Initial commit
This commit is contained in:
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
.POSIX:
|
||||
.SUFFIXES:
|
||||
|
||||
version = dev
|
||||
outputs = acid acid.1
|
||||
all: $(outputs)
|
||||
|
||||
acid: acid.go
|
||||
go build -ldflags "-X 'main.projectVersion=$(version)'" -o $@
|
||||
acid.1: acid.adoc
|
||||
asciidoctor -b manpage -a release-version=$(version) -o $@ acid.adoc
|
||||
clean:
|
||||
rm -f $(outputs)
|
||||
Reference in New Issue
Block a user