-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile.am
58 lines (42 loc) · 1.1 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
ACLOCAL_AMFLAGS = `-I m4`
DIRS = \
doc \
po \
src \
tests
SUBDIRS= ${DIRS} @DOC@
DIST_SUBDIRS= ${DIRS} doc
libdxfdocdir = ${prefix}/doc
libdxfdoc_DATA = \
ABOUT-NLS \
AUTHORS \
ChangeLog \
CODE_OF_CONDUCT \
CONTRIBUTING \
COPYING \
INSTALL \
LICENSE \
MANIFEST \
NEWS \
README
EXTRA_DIST = $(libdxfdoc_DATA)
INTLTOOL_FILES = intltool-extract.in intltool-merge.in intltool-update.in
DISTCLEANFILES= configure.lineno intltool-extract intltool-merge intltool-update po/.intltool-merge-cache
MAINTAINERCLEANFILES= $(INTLTOOL_FILES)
DISTCHECK_CONFIGURE_FLAGS := ${DISTCHECK_CONFIGURE_FLAGS} --disable-update-mime-database --disable-update-desktop-database
# 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