-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile.am
47 lines (33 loc) · 880 Bytes
/
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
EXTRA_DIST =
include $(top_srcdir)/Makefile.decl
ACLOCAL_AMFLAGS = -I m4
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection --enable-gtk-doc --enable-gst-plugin --enable-viewer --enable-cpp-test
SUBDIRS = src
if ARAVIS_BUILD_VIEWER
SUBDIRS += viewer
endif
if ARAVIS_BUILD_GST_PLUGIN
SUBDIRS += gst
endif
SUBDIRS += tests po docs
aravisdocdir = ${prefix}/doc/aravis-@ARAVIS_API_VERSION@
aravisdoc_DATA = \
README \
COPYING \
ChangeLog \
AUTHORS \
INSTALL \
NEWS
EXTRA_DIST += $(aravisdoc_DATA) m4/introspection.m4
# 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
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = aravis-@[email protected]
CLEANFILES = $(pkgconfig_DATA)
%-@[email protected]: %.pc
cp $< $@