Makefile 1.6 KB

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