blob: 9b9cb606e4f9560ccee7288424e35fd28362100a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
SRCS= \
conf.py ../src/version.in \
prolog.inc shields.inc shieldswho.inc \
about.rst \
appendix/Meta.rst appendix/Roadmap.rst \
building/Building.rst \
building/Directories.rst \
building/gcc/GNULinux-GNAT.rst \
building/gcc/index.rst \
building/gcc/Windows-MinGW-GNAT.rst \
building/llvm/GNULinux-GNAT.rst \
building/llvm/index.rst \
building/llvm/Windows-MinGW-GNAT.rst \
building/mcode/GNULinux-GNAT.rst \
building/mcode/index.rst \
building/mcode/Windows-GNATGPL.rst \
building/mcode/Windows-MinGW-GNAT.rst \
building/PrecompileVendorPrimitives.rst \
contribute.rst \
genindex.rst \
getting/Releases.rst \
index.rst \
licenses.rst \
references/CodingStyle.rst \
references/CommandReference.rst \
references/ImplementationOfVHDL.rst \
references/ImplementationOfVITAL.rst \
using/InvokingGHDL.rst \
using/QuickStartGuide.rst \
using/Simulation.rst
CP=cp
# Sphinx options.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = build
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
all: ghdl.info
info: ghdl.info
ghdl.info: ghdl.texi
makeinfo -o $@ $<
dvi: ghdl.dvi
ghdl.dvi: ghdl.texi
texi2dvi $<
ghdl.ps: ghdl.dvi
dvips $<
pdf: ghdl.pdf
ghdl.pdf: ghdl.dvi
dvipdf $<
html:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
texi: ghdl.texi
ghdl.texi: $(SRCS)
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
$(CP) $(BUILDDIR)/texinfo/GHDL.texi $@
clean:
$(RM) *~ *.dvi *.info ghdl.aux ghdl.cp ghdl.fn ghdl.ky ghdl.log
$(RM) ghdl.pdf ghdl.pg ghdl.toc ghdl.tp ghdl.vr
$(RM) -rf build
maintainer-clean: clean
$(RM) ghdl.texi
|