-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
68 lines (53 loc) · 1.34 KB
/
Makefile.am
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
#
# $Id$
#
ACLOCAL_AMFLAGS = -I m4
if USE_AVR_CROSS
EXAMPLES = examples
endif
SUBDIRS = . src $(EXAMPLES) doc regress
EXTRA_DIST = bootstrap make_tarball README.gdb SUPPORT m4/README
doc_DATA = README README.gdb SUPPORT TODO AUTHORS ChangeLog COPYING INSTALL NEWS
CLEANFILES = simulavr-$(PACKAGE_VERSION).tar.gz
doxygen-doc:
if DX_COND_doc
$(MAKE) -C doc doxygen-doc
else
@echo "doxygen documentation not available! Sorry."
endif
sphinx-doc:
if PYTHON_CMD_USE
if HAVE_PYMOD_sphinx
$(MAKE) -C doc sphinx-doc
else
@echo " Can't build documentation with Sphinx, python has no module sphinx!"
endif
else
@echo " Can't build documentation with Sphinx, python command not found!"
endif
web-html:
if PYTHON_CMD_USE
if HAVE_PYMOD_sphinx
$(MAKE) -C doc web-html
else
@echo " Can't build web site with Sphinx, python has no module sphinx!"
endif
else
@echo " Can't build web site with Sphinx, python command not found!"
endif
install-doxygen:
if DX_COND_doc
$(MAKE) -C doc install-doxygen
else
@echo "install doxygen documentation not available! Sorry."
endif
install-vpi:
if USE_VERILOG
$(MAKE) -C src install-vpi
else
@echo "install vpi module not available! Sorry."
endif
check-versions.out: check-versions.sh
./check-versions.sh > check-versions.out
all-local: check-versions.out
.PHONY: doxygen-doc sphinx-doc web-html install-doxygen install-vpi