mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-23 23:53:10 +08:00
15 lines
183 B
Makefile
15 lines
183 B
Makefile
|
all: org posts gmi
|
||
|
|
||
|
org:
|
||
|
cd org && make
|
||
|
|
||
|
posts:
|
||
|
pandoc posts.md --css=css/everforest.css -s -o posts.html
|
||
|
|
||
|
gmi:
|
||
|
misc/mdlist2gmi.py > posts.gmi
|
||
|
|
||
|
clean:
|
||
|
rm posts.html
|
||
|
rm posts.gmi
|