diff options
author | ng0 <ng0@n0.is> | 2019-10-02 21:25:19 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-02 21:25:19 +0000 |
commit | 314e499ef077874220a0a0574a879239d4b78194 (patch) | |
tree | 280c7a4ab460c9698f8e43ee27a92c616aca8a47 /Makefile | |
parent | 42324a357b58bedea86974bf229fc326a89e06dc (diff) |
bump submodule, add lines to enable bootstrapping the submodule and configure*
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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) |