ddia/Makefile
Vonng 552259bf3b add docisfy support
* now you can view doc via browswer with `make`
2021-08-10 11:24:18 +08:00

15 lines
175 B
Makefile

default: serve
# serve document with docsify (or python)
s: serve
d: serve
serve:
bin/serve
# generate zh-tw version
translate:
bin/zh-tw.py
.PHONY: s d serve translate