From: Thadeu Lima de Souza Cascardo Date: Sat, 5 Dec 2009 14:21:09 +0000 (-0200) Subject: Create Makefile for hello world directory. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fkernel%2Fold_slides%2F.git;a=commitdiff_plain;h=4f0f718c8c8a7fe9bb4b397ed2090212c481f4b6 Create Makefile for hello world directory. --- diff --git a/01.hello/Makefile b/01.hello/Makefile new file mode 100644 index 0000000..3913174 --- /dev/null +++ b/01.hello/Makefile @@ -0,0 +1,13 @@ +NAME = 01.hello + +all: $(NAME).pdf + +%.pdf: %.tex + pdflatex $< + +%.tex: %.xml ../beamer.xsl + xsltproc ../beamer.xsl $< > $@ + +clean: + rm -f $(NAME).pdf $(NAME).tex $(NAME).aux $(NAME).log $(NAME).nav \ + $(NAME).out $(NAME).snm $(NAME).toc