diff options
Diffstat (limited to 'posters/Makefile')
-rw-r--r-- | posters/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/posters/Makefile b/posters/Makefile index edf3d18..323e680 100644 --- a/posters/Makefile +++ b/posters/Makefile @@ -3,23 +3,33 @@ ALL = \ 2017-08-28-libre-office-forum.pdf \ 2017-08-28-libre-office-forum.png \ +2017-10-23-migrate-google.pdf \ +2017-10-23-migrate-google.png \ +2017-11-11-miljoe.pdf\ + SEND_FILES = *.pdf *.png all: $(ALL) - -# Sends to fripost.org for publication +# General cases %.pdf: %.odg libreoffice --invisible --convert-to pdf $< -%.pdf: %.odf +%.pdf: %.odt libreoffice --invisible --convert-to pdf $< %.png: %.pdf convert $< $@ +# Special cases + +2017-11-11-miljoe.pdf: 0000556932-01_miljo.pdf + cp $< $@ + +# Sends to fripost.org for publication + send: rsync -ruvp --chmod=Dugo+rx,Fugo+r $(SEND_FILES) www.fripost.org:/var/www/fripost.org/material/ |