mirror of https://github.com/dirtbags/moth.git
10 lines
113 B
Makefile
10 lines
113 B
Makefile
|
all: index.mdwn
|
||
|
|
||
|
.DELETE_ON_ERROR:
|
||
|
|
||
|
index.mdwn: key convert.py
|
||
|
./convert.py | hd > $@
|
||
|
|
||
|
clean:
|
||
|
rm -f index.mdwn
|