From 4f0f718c8c8a7fe9bb4b397ed2090212c481f4b6 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Sat, 5 Dec 2009 12:21:09 -0200 Subject: [PATCH] Create Makefile for hello world directory. --- 01.hello/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 01.hello/Makefile 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 -- 2.20.1