view slide/Makefile @ 11:831316a767e8

add hoare figure
author ryokka
date Mon, 10 Feb 2020 14:20:21 +0900
parents
children 19ab6b8055ea
line wrap: on
line source

# Settings
TARGET=slide

# commands
.PHONY : all clean remake

all:
	slideshow build $(TARGET).md -t s6cr --h2
	open $(TARGET).html

clean:
	rm -rf s6/ scripts/ *.html *.css


remake:
	make clean
	make all