mirror of
https://github.com/Vonng/ddia.git
synced 2026-06-21 00:47:05 +08:00
14 lines
175 B
Makefile
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
|