File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,17 +6,23 @@ build: clean html
66
77html : .FORCE
88 pandoc -V lang=en -s -t $(SLIDE_FORMAT ) presentation1.md -o presentation1.html
9- git add presentation1.html
9+ pandoc -V lang=en -s -t $(SLIDE_FORMAT ) presentation2.md -o presentation2.html
10+ git add presentation1.html presentation2.html
1011
1112pdf : .FORCE
1213 pandoc -V lang=en -s -t beamer presentation1.md -o presentation1.pdf
14+ pandoc -V lang=en -s -t beamer presentation2.md -o presentation2.pdf
1315
1416pptx : .FORCE
1517 pandoc -V lang=en -s presentation1.md -o presentation1.pptx
18+ pandoc -V lang=en -s presentation2.md -o presentation2.pptx
1619
1720clean : .FORCE
1821 @if [ -f presentation1.html ]; then rm presentation1.html; fi
1922 @if [ -f presentation1.pdf ]; then rm presentation1.pdf; fi
2023 @if [ -f presentation1.pptx ]; then rm presentation1.pptx; fi
24+ @if [ -f presentation2.html ]; then rm presentation2.html; fi
25+ @if [ -f presentation2.pdf ]; then rm presentation2.pdf; fi
26+ @if [ -f presentation2.pptx ]; then rm presentation2.pptx; fi
2127
2228.FORCE :
You can’t perform that action at this time.
0 commit comments