summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 20:26:29 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 20:26:29 +0100
commitd6fd5f580cd35721cd74d48d245a5ca75c92574c (patch)
treea8fb29ad25ff12328d92b0ff17e3851fe14186fd /Makefile
parent287edcc1901d1a13684801a23d61b33ae352be9f (diff)
build both source and appstore packages when running dist
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 511fa0962..eb5a5df76 100644
--- a/Makefile
+++ b/Makefile
@@ -100,12 +100,19 @@ clean:
.PHONY: distclean
distclean: clean
rm -rf vendor
+ rm -rf node_modules
rm -rf js/vendor
rm -rf js/node_modules
-# Builds the source package
+# Builds the source and appstore package
.PHONY: dist
dist:
+ make source
+ make appstore
+
+# Builds the source package
+.PHONY: source
+source:
make build
make test
rm -rf $(source_build_directory)