2
0
Fork 0
mirror of https://github.com/Vonng/ddia.git synced 2026-06-21 00:47:05 +08:00
ddia/Makefile
Vonng 552259bf3b add docisfy support
* now you can view doc via browswer with `make`
2021-08-10 11:24:18 +08:00

14 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