view presentation/Makefile @ 129:c1e9c7ab7691

Import poster graffle file from kaito-master
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 18 Feb 2017 11:16:52 +0900
parents d731f2d0947d
children
line wrap: on
line source

# Settings
TARGET=slide
CONVERT=pdf2svg

vpath pdf images
IMAGES=$(wildcard images/*.pdf)
IMAGES_FOR_SLIDE=$(subst .pdf,.svg,$(IMAGES))


# dependencies
$(TARGET).html : $(TARGET).md $(IMAGES_FOR_SLIDE)
	slideshow build -t s6cr $<

%.svg: %.pdf
	$(CONVERT) $< $@


# commands
.PHONY : clean all open remake

clean:
	rm -rf *.html s6 scripts

all: $(TARGET).html

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

remake:
	make clean
	make all