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