view slide/Makefile @ 14:19ab6b8055ea

fix slide
author ryokka
date Wed, 12 Feb 2020 05:02:27 +0900
parents 831316a767e8
children
line wrap: on
line source

# Settings
TARGET=slide

# commands
.PHONY : all clean remake

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

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


remake:
	make clean
	make all