Makefile 935 B

1234567891011121314151617181920212223242526
  1. all: tmp/index.html tmp/index_slides.html tmp/CM1.html tmp/CM1_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. publish:
  15. scp tmp/* yangra.univ-littoral.fr:public-html/enseignements/L3Info_Projets/
  16. clean:
  17. rm -rf tmp