Convert links from http -> https
[buildfarm-client-wiki.git] / GNUmakefile
1 INPUT = $(wildcard *.md)
2 OUTPUT = $(INPUT:.md=.html)
3
4 all:    $(OUTPUT)
5 clean:  
6 distclean:      clean
7         -rm -f $(OUTPUT)
8
9 %.html: %.md
10         multimarkdown $< >$@