mirror of https://github.com/sgoudham/neovide.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
280 B
Makefile
17 lines
280 B
Makefile
3 years ago
|
.PHONY: md_update
|
||
|
md_update:
|
||
|
@awk -f ./riss.awk < ../README.md >content/_index.md
|
||
|
|
||
|
.PHONY: content_update
|
||
|
content_update: md_update
|
||
|
@mkdir -p static/assets
|
||
|
@cp -r ../assets static/
|
||
|
|
||
|
.PHONY: all
|
||
|
all: content_update
|
||
|
@zola build
|
||
|
|
||
|
.PHONY: serve
|
||
|
serve: content_update
|
||
|
@zola serve
|