[llvm-commits] [poolalloc] r170758 - /poolalloc/branches/release_32/docs/dsa-manual/Makefile

John Criswell criswell at uiuc.edu
Thu Dec 20 12:25:39 PST 2012


Author: criswell
Date: Thu Dec 20 14:25:39 2012
New Revision: 170758

URL: http://llvm.org/viewvc/llvm-project?rev=170758&view=rev
Log:
Created a basic Makefile for the DSA manual.

Added:
    poolalloc/branches/release_32/docs/dsa-manual/Makefile

Added: poolalloc/branches/release_32/docs/dsa-manual/Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/branches/release_32/docs/dsa-manual/Makefile?rev=170758&view=auto
==============================================================================
--- poolalloc/branches/release_32/docs/dsa-manual/Makefile (added)
+++ poolalloc/branches/release_32/docs/dsa-manual/Makefile Thu Dec 20 14:25:39 2012
@@ -0,0 +1,17 @@
+LATEX=latex
+
+all: manual.pdf
+
+%.pdf: %.ps
+	ps2pdf $<
+
+%.ps: %.dvi
+	dvips -o $@ $< -t letter
+
+%.dvi: %.tex
+	-rm -f *.aux
+	$(LATEX) $<
+
+clean:
+	rm -f *.aux *.log *.pdf *.ps *.dvi
+





More information about the llvm-commits mailing list