blob: d5aca9485ea5f94bd90119261cad1f9cf570279c (
plain)
1
2
3
4
5
6
7
8
9
10
|
ALL = fripost-social-presentaiton.pdf
all: $(ALL)
fripost-social-presentaiton.pdf: presentation.mdwn header.tex.tmpl
pandoc -f markdown -t beamer -H header.tex.tmpl -o $@ $<
send:
rsync -ruvp --chmod=Dugo+rx,Fugo+r $(ALL) www.fripost.org:/var/www/fripost.org/material/
@echo; echo Now avialable as; for f in $(ALL); do echo " - https://fripost.org/material/$$f"; done
|