Mikhail Glushenkov | c7e56fe | 2008-11-25 21:38:12 +0000 | [diff] [blame] | 1 | ##===- tools/llvmc/doc/Makefile ----------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | RST2HTML=rst2html --stylesheet=llvm.css --link-stylesheet |
| 11 | |
| 12 | all : LLVMC-Reference.html LLVMC-Tutorial.html |
| 13 | |
| 14 | LLVMC-Tutorial.html : LLVMC-Tutorial.rst llvm.css |
| 15 | $(RST2HTML) $< $@ |
| 16 | |
| 17 | LLVMC-Reference.html : LLVMC-Reference.rst llvm.css |
| 18 | $(RST2HTML) $< $@ |
| 19 | |
| 20 | clean : |
| 21 | rm *.html |