forked from accellera-official/uvm-systemc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
43 lines (32 loc) · 752 Bytes
/
Copy pathMakefile.am
File metadata and controls
43 lines (32 loc) · 752 Bytes
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
include $(top_srcdir)/config/Make-rules
SUBDIRS = \
docs \
src \
examples
DOC_FILES = \
AUTHORS.md \
ChangeLog \
CONTRIBUTING.md \
INSTALL.md \
LICENSE \
NEWS \
NOTICE \
README.md \
RELEASENOTES.md
EXTRA_DIST += \
$(DOC_FILES) \
\
msvc16
## ****************************************************************************
## install documentation?
if SEPARATE_INSTALL_TREE
rootdoc_DATA = \
$(DOC_FILES)
uninstall-hook:
test ! -d "$(docdir)" || rmdir --ignore-fail-on-non-empty "$(docdir)"
test ! -d "$(prefix)" || rmdir --ignore-fail-on-non-empty "$(prefix)"
endif # SEPARATE_INSTALL_TREE
## ****************************************************************************
doxygen:
@(cd docs && $(MAKE) $@)
## Taf!