aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-11-02 15:54:43 +0000
committerng0 <ng0@n0.is>2019-11-02 15:54:43 +0000
commit5e05c22c57dfd6ed28516f10e3460567c3bbfc08 (patch)
tree0cfb3ee75054e04f626f6274d4718af2d2bd89e1 /Makefile
parentd5794f507b77110584eb38ec8be362b7ce3cca67 (diff)
parent70a232294035b2a08a701391495b65fdff696b7a (diff)
downloadwallet-core-5e05c22c57dfd6ed28516f10e3460567c3bbfc08.tar.xz
Merge branch 'master' of git.taler.net:wallet-core
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 31142ede5..9372fe1b6 100644
--- a/Makefile
+++ b/Makefile
@@ -93,3 +93,14 @@ endif
.PHONY: watch
watch: tsconfig.json
./node_modules/.bin/webpack --watch
+
+
+# Create the node_modules directory for the android wallet
+package-android:
+ rm -rf dist/android
+ mkdir -p dist/android
+ yarn pack --filename dist/android/taler-wallet.tar.gz
+ cp contrib/package-android.json dist/android/package.json
+ cd dist/android && yarn install
+ #cd dist/android && npm install --global --prefix $(CURDIR)/dist/android $(CURDIR)
+