mirror of
https://github.com/Vonng/ddia.git
synced 2024-12-06 15:20:12 +08:00
552259bf3b
* now you can view doc via browswer with `make`
15 lines
175 B
Makefile
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
|