Makefile 1.6 KB

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