mirror of
https://github.com/Vonng/ddia.git
synced 2024-12-06 15:20:12 +08:00
13 lines
161 B
Makefile
13 lines
161 B
Makefile
|
|
default: serve
|
|
|
|
# serve document with docsify (or python)
|
|
serve:
|
|
bin/serve
|
|
|
|
# generate zh-tw version
|
|
translate:
|
|
bin/zh-tw.py
|
|
|
|
.PHONY: default serve translate
|