view Makefile @ 0:9a8781112c5f default tip

init
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sat, 30 May 2020 19:13:55 +0900
parents
children
line wrap: on
line source

TARGET = slide

MARP = "marp"

.SUFFIXES: .md .html

.md.html:
	$(MARP) --theme ./themes/cr.css  --html $<

all: $(TARGET).html
	open $(TARGET).html

clean:
	rm $(TARGET).html