diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43e0f57 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +VERSION=v0.1.0 + +build: + go build -ldflags="-X 'main.Version=${VERSION}'" + +tar: build + XZ_OPT=-9 tar -cvf midr-${VERSION}.tar.xz midr templates/ |