aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ae82c3825..8db33a043 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@ poname = taler-wallet-webex
gulp = node_modules/gulp/bin/gulp.js
tsc = node_modules/typescript/bin/tsc
pogen = node_modules/pogen/pogen.js
+typedoc = node_modules/typedoc/bin/typedoc
.PHONY: src/i18n/strings.ts yarn-install
@@ -25,6 +26,14 @@ tsconfig.json: gulpfile.js yarn-install
dist:
$(gulp) srcdist
+# make documentation from docstrings
+typedoc:
+ $(typedoc) --out build/typedoc --readme README
+
+clean:
+ rm -rf build/
+
+
i18n: yarn-install
# extract translatable strings
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \