Makefile.am 892 字节
Newer Older
D
Daniel Veillard 已提交
1 2
## Process this file with automake to produce Makefile.in

3
INCLUDES = -I$(top_builddir)/include -I@top_srcdir@/include @LIBXML_CFLAGS@
4 5
DEPS = libvirt.la
LDADDS = @STATIC_BINARIES@ libvirt.la
K
Karel Zak 已提交
6
VIRSH_LIBS = @VIRSH_LIBS@
D
Daniel Veillard 已提交
7

8
EXTRA_DIST = libvirt_sym.version
9

10
lib_LTLIBRARIES = libvirt.la
11
libvirt_la_LIBADD = @LIBXML_LIBS@
K
Karel Zak 已提交
12

13
libvirt_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvirt_sym.version \
14
                    -version-info @LIBVIRT_VERSION_INFO@
K
Karel Zak 已提交
15

16 17
libvirt_la_SOURCES =						\
		libvirt.c internal.h				\
18
		hash.c hash.h					\
19
		test.c test.h                                   \
20
		xml.c xml.h					\
21
		xen_internal.c xen_internal.h			\
22
		xs_internal.c xs_internal.h			\
23
		xend_internal.c xend_internal.h			\
24
		sexpr.c sexpr.h					\
25 26
		virterror.c					\
		driver.h
27

K
Karel Zak 已提交
28
bin_PROGRAMS = virsh
29

K
Karel Zak 已提交
30
virsh_SOURCES = virsh.c
31 32
virsh_LDFLAGS =
virsh_DEPENDENCIES = $(DEPS)
K
Karel Zak 已提交
33
virsh_LDADD = $(LDADDS) $(VIRSH_LIBS)
34