# Makefile for epppt/sample
#
# Copyright (C) Morikawa Yasuhiro, 2004.  All rights reserved.

INDEXHTML=index.html
MENUHTML=menu.html
THUMBNAIL=thumbnail.html

HTMLDIR=html
SLIDEDIR=slide
THUMBDIR=thumbnail
ORGDIR=ORG

all: 
	perl ../epppt.pl -x

clean:
	-rm $(INDEXHTML) $(MENUHTML) $(THUMBNAIL)
	-test -d $(HTMLDIR) && rm -rf $(HTMLDIR)
	-test -d $(SLIDEDIR) && rm -rf $(SLIDEDIR)
	-test -d $(THUMBDIR) && rm -rf $(THUMBDIR)
	cd $(ORGDIR) ;\
	cp -r $(SLIDEDIR) $(THUMBDIR) Config.epppt \
	       title.txt menu.txt epppt.ppt ../
	chmod 755 $(SLIDEDIR) $(THUMBDIR)
	chmod 644 $(SLIDEDIR)/* $(THUMBDIR)/* Config.epppt \
	          title.txt menu.txt epppt.ppt

init: clean

