mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 02:33:33 +00:00
113ec35f7f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60048 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
604 B
Makefile
22 lines
604 B
Makefile
##===- 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
|