summaryrefslogtreecommitdiff
path: root/build-system/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'build-system/Makefile')
-rw-r--r--build-system/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/build-system/Makefile b/build-system/Makefile
index ba565fc4f..6bd29884e 100644
--- a/build-system/Makefile
+++ b/build-system/Makefile
@@ -7,6 +7,11 @@ typedoc = node_modules/typedoc/bin/typedoc
ava = node_modules/.bin/ava
nyc = node_modules/nyc/bin/nyc.js
+git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git_archive_all.py
+
+
+version := $(shell git describe --tags)
+
include ./build-system/config.mk
.PHONY: compile
@@ -16,7 +21,7 @@ compile:
.PHONY: dist
dist:
- git archive --format=tar.gz HEAD -o taler-wallet.tar.gz
+ $(git-archive-all) --include ./configure taler-wallet-$(version).tar.gz
# make documentation from docstrings
.PHONY: typedoc