summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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)