13 lines
265 B
Makefile
13 lines
265 B
Makefile
|
DEST=/var/gemini/fosdem/
|
||
|
|
||
|
all: updateinstall
|
||
|
|
||
|
updateinstall: update install
|
||
|
|
||
|
update:
|
||
|
wget --quiet --output-document schedule.xml https://fosdem.org/2021/schedule/xml
|
||
|
./schedule2gemtext.py
|
||
|
|
||
|
install:
|
||
|
rsync -a -v -p --exclude=Makefile --exclude="*~" *.gmi ${DEST}
|