################ # W3C slide maker # MAIN MAKEFILE #### PERL=perl BURST=../Tools/w3cburst.pl ARCH="UNIX" all: overview.htm overview.htm: all.htm infos.txt Makefile make.bat (rm -f slide*.htm* overview.htm* ; \ $(PERL) $(BURST) cssStandardFiles=$(STYLE_SHEET) talkTitle=$(TITLE) author=$(AUTHOR) authorUrl=$(AUTHOR_URL) author2=$(AUTHOR2) authorUrl2=$(AUTHOR_URL2) logoFile=$(LOGO) arch=$(ARCH)) infos.txt: echo '#---------------------------------------------' >>$@ echo '# Slidemaker Tool Parameters' >>$@ echo '#---------------------------------------------' >>$@ echo '# Check YYMMsub/overview.htm for documentation ' >>$@ echo '#' >>$@ echo '' >>$@ echo 'talkTitle = W3C Slidemaker Tool' >>$@ echo 'author = Stephan Montigaud' >>$@ echo 'authorUrl = mailto:webreq@w3.org' >>$@ echo '' >>$@ echo '# If there are 2 authors, you can add:' >>$@ echo '#author2 = First Last' >>$@ echo '#author2Url = mailto:last@w3.org' >>$@ echo '' >>$@ echo '# Uncomment and change these if needed:' >>$@ echo '#logoFile = ../Icons/w3c_home.gif' >>$@ echo '#logoLink = http://www.w3.org/' >>$@ echo '#logoAlt = W3C' >>$@ echo '' >>$@ echo '# Set this for an extra logo & link in the footer' >>$@ echo '#logoFile2 = i18n-alt.gif' >>$@ echo '#logoLink2 = http://www.w3.org/International' >>$@ echo '#logoAlt2 = Internationalization' >>$@ echo '' >>$@ echo '# Standard style sheets are usually not changed' >>$@ echo 'cssStandardFiles = ../Tools/w3ctalk-640.css,../Tools/w3ctalk-800.css,../Tools/w3ctalk-1024.css' >>$@ echo '' >>$@ echo '# With cssUserFiles you overload the standard css files;' >>$@ echo '# this can be one file or a list of files' >>$@ echo '#cssUserFiles = ' >>$@ echo '' >>$@ echo '# Uncomment and change language and charset if needed' >>$@ echo '#baselang = en-us' >>$@ echo '#charset = ISO-8859-1' >>$@