Makefile 230 B

12345678910111213
  1. HTML_FILES = index.html
  2. all: $(HTML_FILES)
  3. %.html: %.md
  4. pandoc -s --toc -H style.html -o $@ $<
  5. publish:
  6. scp index.html *.svg *.png yangra.univ-littoral.fr:public-html/enseignements/tutoriel_git/
  7. clean:
  8. rm -f $(HTML_FILES)