Makefile 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. all: tmp/index.html tmp/index_slides.html tmp/CM1.html tmp/CM1_slides.html tmp/CM2.html tmp/CM2_slides.html tmp/CM3.html tmp/CM3_slides.html
  2. cp www/template.css www/slidy.css www/slidy.js tmp
  3. cp CM?/*.png tmp
  4. cp CM?/*.svg tmp
  5. tmp/before.html: www/before.md
  6. mkdir -p tmp
  7. pandoc -o $@ $<
  8. tmp/index.html: www/index.md tmp/before.html
  9. pandoc --template www/template.html --css template.css --toc --toc-depth 1 --include-before tmp/before.html -s -o $@ $<
  10. tmp/index_slides.html: www/index.md tmp/before.html
  11. pandoc --css slidy.css --template www/template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  12. tmp/CM1.html: CM1/CM1.md tmp/before.html
  13. pandoc --template www/template.html --css template.css --toc --toc-depth 1 --include-before tmp/before.html -s -o $@ $<
  14. tmp/CM1_slides.html: CM1/CM1.md tmp/before.html
  15. pandoc --css slidy.css --template www/template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  16. tmp/CM2.html: CM2/CM2.md tmp/before.html
  17. pandoc --template www/template.html --css template.css --toc --toc-depth 1 --include-before tmp/before.html -s -o $@ $<
  18. tmp/CM2_slides.html: CM2/CM2.md tmp/before.html
  19. pandoc --css slidy.css --template www/template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  20. tmp/CM3.html: CM3/CM3.md tmp/before.html
  21. pandoc --template www/template.html --css template.css --toc --toc-depth 1 --include-before tmp/before.html -s -o $@ $<
  22. tmp/CM3_slides.html: CM3/CM3.md tmp/before.html
  23. pandoc --css slidy.css --template www/template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  24. publish:
  25. scp tmp/* yangra.univ-littoral.fr:public-html/enseignements/L3Info_Projets/
  26. clean:
  27. rm -rf tmp