9 lines
216 B
Makefile
9 lines
216 B
Makefile
|
DEST=/var/gemini/rfc-mirror
|
||
|
|
||
|
all: rfc-index
|
||
|
|
||
|
rfc-index:
|
||
|
rsync -avz --delete --exclude=\*.gmi ftp.rfc-editor.org::rfcs-text-only ${DEST}
|
||
|
./rfc-index2gemini.py && mv ${DEST}/rfc-index.gmi.tmp ${DEST}/rfc-index.gmi
|
||
|
|