summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-02 21:25:19 +0000
committerng0 <ng0@n0.is>2019-10-02 21:25:19 +0000
commit314e499ef077874220a0a0574a879239d4b78194 (patch)
tree280c7a4ab460c9698f8e43ee27a92c616aca8a47 /Makefile
parent42324a357b58bedea86974bf229fc326a89e06dc (diff)
downloadwallet-core-314e499ef077874220a0a0574a879239d4b78194.tar.gz
wallet-core-314e499ef077874220a0a0574a879239d4b78194.tar.bz2
wallet-core-314e499ef077874220a0a0574a879239d4b78194.zip
bump submodule, add lines to enable bootstrapping the submodule and configure*
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b448f3a21..0003a647b 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,9 @@ tslint = node_modules/tslint/bin/tslint
-include config.mk
+self-strap: submodules/init submodules/update
+ cd build-scripts && make
+
.PHONY: tsc
tsc: tsconfig.json yarn-install
$(tsc)
@@ -39,6 +42,12 @@ typedoc:
clean:
rm -rf dist/ config.mk
+submodules/init:
+ git submodule update --init --recursive
+
+submodules/update:
+ git submodule update --recursive --remote
+
.PHONY: check
check: tsc yarn-install
find dist/node -name '*-test.js' | xargs $(ava)