Skip to content

Commit 9c611fd

Browse files
author
R. S. Doiel
committed
added second presentation
1 parent 41a79d4 commit 9c611fd

4 files changed

Lines changed: 671 additions & 2 deletions

File tree

presentations/Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,23 @@ build: clean html
66

77
html: .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

1112
pdf: .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

1416
pptx: .FORCE
1517
pandoc -V lang=en -s presentation1.md -o presentation1.pptx
18+
pandoc -V lang=en -s presentation2.md -o presentation2.pptx
1619

1720
clean: .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:

0 commit comments

Comments
 (0)