ALL = \ 2017-08-28-libre-office-forum.pdf \ 2017-08-28-libre-office-forum.png \ SEND_FILES = *.pdf *.png all: $(ALL) # Sends to fripost.org for publication %.pdf: %.odg libreoffice --invisible --convert-to pdf $< %.pdf: %.odf libreoffice --invisible --convert-to pdf $< %.png: %.pdf convert $< $@ send: rsync -ruvp --chmod=Dugo+rx,Fugo+r $(SEND_FILES) www.fripost.org:/var/www/fripost.org/material/ clean: rm -fr $(ALL) SHELL = /bin/bash