You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 111 B

123456789
  1. ALL_DOCS = $(wildcard *.md)
  2. all: $(ALL_DOCS:.md=.html)
  3. %.html: %.md
  4. pandoc -s $< > $@
  5. clean:
  6. rm -f *.html