You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
md=$(shell ls *.md)
|
|
mdhtml=$(md:%.md=%.html)
|
|
|
|
all: $(mdhtml)
|
|
|
|
%.html: %.md
|
|
pandoc --from markdown \
|
|
--to html5 \
|
|
--css styles.css \
|
|
--standalone $< -o $@
|