forked from bert/libdxf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
49 lines (39 loc) · 756 Bytes
/
Copy pathMakefile.am
File metadata and controls
49 lines (39 loc) · 756 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
44
45
46
47
48
ACLOCAL_AMFLAGS = `-I m4`
SUBDIRS = \
doc \
po \
src \
tests
libdxfdocdir = ${prefix}/doc
libdxfdoc_DATA = \
ABOUT-NLS \
AUTHORS \
BUGS \
ChangeLog \
CODE_OF_CONDUCT \
CONTRIBUTING \
COPYING \
INSTALL \
ISSUES \
LICENSE \
MANIFEST \
NEWS \
README \
TODO
EXTRA_DIST = $(libdxfdoc_DATA)
# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done
## generate API documentation with doxygen
apidox:
$(MAKE) apidox-am-@LIBDXF_HAS_DOXYGEN@
apidox-am-no:
apidox-am-yes:
@echo "*** Creating API documentation main page"; \
cd doc/doxygen; \
doxygen libDXF.dox
.PHONY: apidox-am-yes apidox-am-no apidox