Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. all: tmp/index.html tmp/index_slides.html tmp/CM1.html tmp/CM1_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/CM3.html: CM3/CM3.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/CM3_slides.html: CM3/CM3.md tmp/before.html
  17. pandoc --css slidy.css --template www/template_slidy.html --toc --toc-depth 1 -t slidy -s -o $@ $<
  18. publish:
  19. scp tmp/* yangra.univ-littoral.fr:public-html/enseignements/L3Info_Projets/
  20. clean:
  21. rm -rf tmp