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

3 4 5
## Copyright (C) 2005-2011 Red Hat, Inc.
## See COPYING.LIB for the License of this software

6 7
# No libraries with the exception of LIBXML should be listed
# here. List them against the individual XXX_la_CFLAGS targets
8
# that actually use them. Also keep GETTEXT_CPPFLAGS at the end.
E
Eric Blake 已提交
9
INCLUDES =	-I$(top_srcdir)/gnulib/lib			\
10 11
		-I../gnulib/lib					\
		-I../include					\
12
		-I@top_srcdir@/src/util				\
13
		-I@top_srcdir@/include				\
14 15
		-DIN_LIBVIRT					\
		$(GETTEXT_CPPFLAGS)
E
Eric Blake 已提交
16 17

AM_CFLAGS =	$(DRIVER_MODULE_CFLAGS)				\
18 19
		$(LIBXML_CFLAGS)				\
		$(WARN_CFLAGS)					\
E
Eric Blake 已提交
20 21 22
		$(LOCK_CHECKING_CFLAGS)				\
		$(WIN32_EXTRA_CFLAGS)				\
		$(COVERAGE_CFLAGS)
23 24
AM_LDFLAGS = $(COVERAGE_LDFLAGS)

L
Lai Jiangshan 已提交
25
EXTRA_DIST = $(conf_DATA) util/keymaps.csv
26

27
BUILT_SOURCES =
28 29 30
CLEANFILES =
DISTCLEANFILES =
MAINTAINERCLEANFILES =
31

E
Eric Blake 已提交
32 33
THREAD_LIBS = $(LIB_PTHREAD) $(LTLIBMULTITHREAD)

34 35 36
if WITH_NETWORK
UUID=$(shell uuidgen 2>/dev/null)
endif
37

C
Chris Lalancette 已提交
38
lib_LTLIBRARIES = libvirt.la libvirt-qemu.la
39

40
moddir = $(libdir)/libvirt/connection-driver
41 42
mod_LTLIBRARIES =

A
Amy Griffis 已提交
43
confdir = $(sysconfdir)/libvirt
44
conf_DATA = libvirt.conf
45

46 47 48 49 50 51
augeasdir = $(datadir)/augeas/lenses
augeas_DATA =

augeastestdir = $(datadir)/augeas/lenses/tests
augeastest_DATA =

52 53
# These files are not related to driver APIs. Simply generic
# helper APIs for various purposes
54
UTIL_SOURCES =							\
55
		util/authhelper.c util/authhelper.h		\
56
		util/bitmap.c util/bitmap.h			\
57
		util/buf.c util/buf.h				\
58
		util/command.c util/command.h			\
59 60 61
		util/conf.c util/conf.h				\
		util/cgroup.c util/cgroup.h			\
		util/event.c util/event.h			\
62
		util/event_poll.c util/event_poll.h		\
63
		util/hash.c util/hash.h				\
D
Daniel Veillard 已提交
64
		util/hooks.c util/hooks.h			\
65
		util/iptables.c util/iptables.h			\
G
Gerhard Stenzel 已提交
66
		util/ebtables.c util/ebtables.h			\
67
		util/dnsmasq.c util/dnsmasq.h                   \
68
		util/json.c util/json.h				\
69 70
		util/logging.c util/logging.h			\
		util/memory.c util/memory.h			\
71
		util/netlink.c util/netlink.h			\
72
		util/pci.c util/pci.h				\
73
		util/processinfo.c util/processinfo.h		\
74 75
		util/hostusb.c util/hostusb.h			\
		util/qparams.c util/qparams.h			\
M
Markus Groß 已提交
76
		util/sexpr.c util/sexpr.h			\
77
		util/stats_linux.c util/stats_linux.h		\
78
		util/storage_file.c util/storage_file.h		\
79
		util/sysinfo.c util/sysinfo.h			\
80 81 82
		util/threads.c util/threads.h			\
		util/threads-pthread.h				\
		util/threads-win32.h				\
H
Hu Tao 已提交
83
		util/threadpool.c util/threadpool.h		\
84 85
		util/uuid.c util/uuid.h				\
		util/util.c util/util.h				\
86
		util/viraudit.c util/viraudit.h			\
E
Eric Blake 已提交
87
		util/virfile.c util/virfile.h			\
88
		util/virpidfile.c util/virpidfile.h		\
89
		util/xml.c util/xml.h				\
L
Lai Jiangshan 已提交
90 91
		util/virterror.c util/virterror_internal.h	\
		util/virkeycode.c util/virkeycode.h		\
92 93
		util/virkeymaps.h				\
		util/virnetdev.h util/virnetdev.c		\
94
		util/virnetdevbandwidth.h util/virnetdevbandwidth.c \
95
		util/virnetdevbridge.h util/virnetdevbridge.c	\
96
		util/virnetdevmacvlan.c util/virnetdevmacvlan.h	\
97
		util/virnetdevtap.h util/virnetdevtap.c		\
98
		util/virnetdevveth.h util/virnetdevveth.c \
99 100
		util/virnetdevvportprofile.h util/virnetdevvportprofile.c \
		util/virsocketaddr.h util/virsocketaddr.c
L
Lai Jiangshan 已提交
101 102 103 104 105 106

EXTRA_DIST += $(srcdir)/util/virkeymaps.h $(srcdir)/util/keymaps.csv \
		$(srcdir)/util/virkeycode-mapgen.py

$(srcdir)/util/virkeymaps.h: $(srcdir)/util/keymaps.csv	\
		$(srcdir)/util/virkeycode-mapgen.py
107
	$(AM_V_GEN)$(PYTHON) $(srcdir)/util/virkeycode-mapgen.py <$(srcdir)/util/keymaps.csv >$@
L
Lai Jiangshan 已提交
108 109

$(srcdir)/util/virkeycode.c: $(srcdir)/util/virkeycode.h $(srcdir)/util/virkeymaps.h
110 111

EXTRA_DIST += util/threads-pthread.c util/threads-win32.c
112

113
# Internal generic driver infrastructure
114
NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c
115
DRIVER_SOURCES =						\
116
		driver.c driver.h				\
117 118
		internal.h					\
		datatypes.c datatypes.h				\
119
		fdstream.c fdstream.h                 \
120
		$(NODE_INFO_SOURCES)				\
121
		libvirt.c libvirt_internal.h			\
122 123
		locking/lock_manager.c locking/lock_manager.h   \
		locking/lock_driver.h 				\
124 125
		locking/lock_driver_nop.h locking/lock_driver_nop.c \
		locking/domain_lock.h locking/domain_lock.c
126

127 128 129
LOCK_DRIVER_SANLOCK_SOURCES = \
		locking/lock_driver_sanlock.c

130

131 132 133 134
NETDEV_CONF_SOURCES =						\
		conf/netdev_bandwidth_conf.h conf/netdev_bandwidth_conf.c \
		conf/netdev_vport_profile_conf.h conf/netdev_vport_profile_conf.c

135
# XML configuration format handling sources
136 137
# Domain driver generic impl APIs
DOMAIN_CONF_SOURCES =						\
138
		conf/capabilities.c conf/capabilities.h		\
139
		conf/domain_conf.c conf/domain_conf.h		\
140
		conf/domain_audit.c conf/domain_audit.h		\
141
		conf/domain_nwfilter.c conf/domain_nwfilter.h
142 143 144

DOMAIN_EVENT_SOURCES =						\
		conf/domain_event.c conf/domain_event.h
145 146

# Network driver generic impl APIs
147
NETWORK_CONF_SOURCES =						\
148
		conf/network_conf.c conf/network_conf.h
149

150 151
# Network filter driver generic impl APIs
NWFILTER_PARAM_CONF_SOURCES =					\
152 153
		conf/nwfilter_params.c conf/nwfilter_params.h	\
		conf/nwfilter_conf.h
154 155 156 157 158

NWFILTER_CONF_SOURCES =					\
		$(NWFILTER_PARAM_CONF_SOURCES)			\
		conf/nwfilter_conf.c conf/nwfilter_conf.h

159
# Storage driver generic impl APIs
160 161
STORAGE_CONF_SOURCES =                                         \
		conf/storage_conf.h conf/storage_conf.c
162

163
# Interface driver generic impl APIs
164 165
INTERFACE_CONF_SOURCES =                                       \
		conf/interface_conf.c conf/interface_conf.h
166

167
# Secret driver generic impl APIs
168 169 170 171 172 173 174 175 176 177
SECRET_CONF_SOURCES =                                          \
		conf/secret_conf.h conf/secret_conf.c

# Network driver generic impl APIs
NODE_DEVICE_CONF_SOURCES =                                     \
		conf/node_device_conf.c conf/node_device_conf.h

ENCRYPTION_CONF_SOURCES =					\
		conf/storage_encryption_conf.c conf/storage_encryption_conf.h

178 179 180
CPU_CONF_SOURCES =						\
		conf/cpu_conf.c conf/cpu_conf.h

181
CONF_SOURCES =							\
182
		$(NETDEV_CONF_SOURCES)				\
183 184 185
		$(DOMAIN_CONF_SOURCES)				\
		$(DOMAIN_EVENT_SOURCES)				\
		$(NETWORK_CONF_SOURCES)				\
186
		$(NWFILTER_CONF_SOURCES)			\
187 188 189 190
		$(NODE_DEVICE_CONF_SOURCES)			\
		$(STORAGE_CONF_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
		$(INTERFACE_CONF_SOURCES)			\
191 192
		$(SECRET_CONF_SOURCES)				\
		$(CPU_CONF_SOURCES)
193

194
# The remote RPC driver, covering domains, storage, networks, etc
195
REMOTE_DRIVER_GENERATED = \
E
Eric Blake 已提交
196 197 198 199 200 201 202
		$(srcdir)/remote/remote_protocol.c		\
		$(srcdir)/remote/remote_protocol.h		\
		$(srcdir)/remote/remote_client_bodies.h		\
		$(srcdir)/remote/qemu_protocol.c		\
		$(srcdir)/remote/qemu_protocol.h		\
		$(srcdir)/remote/qemu_client_bodies.h

W
Wen Congyang 已提交
203 204
# The remote RPC driver needs probes.h
if WITH_DTRACE
J
Jiri Denemark 已提交
205
REMOTE_DRIVER_GENERATED += probes.h
W
Wen Congyang 已提交
206 207
endif

E
Eric Blake 已提交
208 209
REMOTE_PROTOCOL = $(srcdir)/remote/remote_protocol.x
QEMU_PROTOCOL = $(srcdir)/remote/qemu_protocol.x
210
REMOTE_DRIVER_PROTOCOL = $(REMOTE_PROTOCOL) $(QEMU_PROTOCOL)
211

212 213 214
$(srcdir)/remote/remote_client_bodies.h: $(srcdir)/rpc/gendispatch.pl \
		$(REMOTE_PROTOCOL)
	$(AM_V_GEN)perl -w $(srcdir)/rpc/gendispatch.pl \
215
	  -k remote $(REMOTE_PROTOCOL) > $@
216

217 218 219
$(srcdir)/remote/qemu_client_bodies.h: $(srcdir)/rpc/gendispatch.pl \
		$(QEMU_PROTOCOL)
	$(AM_V_GEN)perl -w $(srcdir)/rpc/gendispatch.pl \
220 221 222 223 224 225
	  -k qemu $(QEMU_PROTOCOL) > $@

REMOTE_DRIVER_SOURCES =						\
		gnutls_1_0_compat.h				\
		remote/remote_driver.c remote/remote_driver.h	\
		$(REMOTE_DRIVER_GENERATED)
226

227
EXTRA_DIST +=  $(REMOTE_DRIVER_PROTOCOL) \
228
		$(REMOTE_DRIVER_GENERATED)
229

230 231 232 233 234 235 236 237 238 239
# Ensure that we don't change the struct or member names or member ordering
# in remote_protocol.x  The embedded perl below needs a few comments, and
# presumes you know what pdwtags output looks like:
# * use -0777 -n to slurp the entire file into $_.
# * the "split" splits on the /* DD */ comments, so that $p iterates
#     through the struct definitions.
# * process only "struct remote_..." entries
# * remove comments and preceding TAB throughout
# * remove empty lines throughout
# * remove white space at end of buffer
240 241 242 243

# With pdwtags 1.8, --verbose output includes separators like these:
# /* 93 */
# /* <0> (null):0 */
244 245
# with the second line omitted for intrinsic types.
# Whereas with pdwtags 1.3, they look like this:
246
# /* <2d2> /usr/include/libio.h:180 */
247 248
# The alternation of the following regexps matches both cases.
r1 = /\* \d+ \*/
249
r2 = /\* <[[:xdigit:]]+> \S+:\d+ \*/
250
struct_prefix = (remote_|qemu_|virNet|keepalive_)
251

252
PDWTAGS = \
253
	$(AM_V_GEN)if (pdwtags --help) > /dev/null 2>&1; then		\
254
	  pdwtags --verbose $(<:.lo=.$(OBJEXT))				\
255
	    | perl -0777 -n						\
256
		-e 'foreach my $$p (split m!\n*(?:$(r1)|$(r2))\n!) {'	\
257 258
		-e '  if ($$p =~ /^(struct|enum) $(struct_prefix)/ ||'	\
		-e '      $$p =~ /^enum {/) {'				\
259 260 261
		-e '    $$p =~ s!\t*/\*.*?\*/!!sg;'			\
		-e '    $$p =~ s!\s+\n!\n!sg;'				\
		-e '    $$p =~ s!\s+$$!!;'				\
262
		-e '    $$p =~ s!\t!        !g;'			\
263 264 265 266
		-e '    print "$$p\n";'					\
		-e '    $$n++;'						\
		-e '  }'						\
		-e '}'							\
267 268 269
		-e 'BEGIN {'						\
		-e '  print "/* -*- c -*- */\n";'			\
		-e '}'							\
270
		-e 'END {'						\
271
		-e '  if ($$n < 1) {'					\
272 273 274 275 276 277
		-e '    warn "WARNING: your pdwtags program is too old\n";' \
		-e '    warn "WARNING: skipping the $@ test\n";'	\
		-e '    warn "WARNING: install dwarves-1.3 or newer\n";' \
		-e '    exit 8;'					\
		-e '  }'						\
		-e '}'							\
278
		> $(@F)-t;						\
279
	  case $$? in 8) exit 0;; 0) ;; *) exit 1;; esac;		\
280
	  diff -u $(@F)-t $@; st=$$?; rm -f $(@F)-t; exit $$st;		\
281
	else								\
282 283
	  echo 'WARNING: you lack pdwtags; skipping the $@ test' >&2;	\
	  echo 'WARNING: install the dwarves package to get pdwtags' >&2; \
284
	fi
285 286 287 288

PROTOCOL_STRUCTS = \
	$(srcdir)/remote_protocol-structs \
	$(srcdir)/qemu_protocol-structs \
J
Jiri Denemark 已提交
289 290
	$(srcdir)/virnetprotocol-structs \
	$(srcdir)/virkeepaliveprotocol-structs
291 292 293 294 295 296 297
if WITH_REMOTE
# The .o file that pdwtags parses is created as a side effect of running
# libtool; but from make's perspective we depend on the .lo file.
$(srcdir)/%_protocol-structs: libvirt_driver_remote_la-%_protocol.lo
	$(PDWTAGS)
$(srcdir)/virnetprotocol-structs: libvirt_net_rpc_la-virnetprotocol.lo
	$(PDWTAGS)
J
Jiri Denemark 已提交
298
$(srcdir)/virkeepaliveprotocol-structs: libvirt_net_rpc_la-virkeepaliveprotocol.lo
299
	$(PDWTAGS)
300
else !WITH_REMOTE
301
# These generated files must live in git, because they cannot be re-generated
302
# when configured --without-remote.
303
$(PROTOCOL_STRUCTS):
304
endif
305 306
EXTRA_DIST += $(PROTOCOL_STRUCTS)
check-local: $(PROTOCOL_STRUCTS)
307

308 309
# Mock driver, covering domains, storage, networks, etc
TEST_DRIVER_SOURCES =						\
310
		test/test_driver.c test/test_driver.h
311 312 313

# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
314 315 316 317 318 319
		xen/block_stats.c xen/block_stats.h		\
		xen/xen_hypervisor.c xen/xen_hypervisor.h	\
		xen/xen_driver.c xen/xen_driver.h		\
		xen/xend_internal.c xen/xend_internal.h		\
		xen/xm_internal.c xen/xm_internal.h		\
		xen/xs_internal.c xen/xs_internal.h
320
if WITH_XEN_INOTIFY
321
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
322
endif
323 324

LXC_DRIVER_SOURCES =						\
325 326
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
327
		lxc/lxc_driver.c lxc/lxc_driver.h
328

329
LXC_CONTROLLER_SOURCES =					\
330 331
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
332
		lxc/lxc_controller.c
333

J
Jamie Strandboge 已提交
334 335 336
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES =			\
		security/virt-aa-helper.c

337 338 339
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

340
OPENVZ_DRIVER_SOURCES =						\
341 342
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
343

E
Eric Blake 已提交
344
VMWARE_DRIVER_SOURCES =						\
345
		vmware/vmware_driver.c vmware/vmware_driver.h	\
346 347
		vmware/vmware_conf.c vmware/vmware_conf.h

348
VBOX_DRIVER_SOURCES =						\
E
Eric Blake 已提交
349 350 351 352 353 354
	vbox/vbox_glue.c vbox/vbox_glue.h			\
	vbox/vbox_driver.c vbox/vbox_driver.h			\
	vbox/vbox_V2_2.c vbox/vbox_CAPI_v2_2.h			\
	vbox/vbox_V3_0.c vbox/vbox_CAPI_v3_0.h			\
	vbox/vbox_V3_1.c vbox/vbox_CAPI_v3_1.h			\
	vbox/vbox_V3_2.c vbox/vbox_CAPI_v3_2.h			\
355 356
	vbox/vbox_V4_0.c vbox/vbox_CAPI_v4_0.h			\
	vbox/vbox_V4_1.c vbox/vbox_CAPI_v4_1.h
357

E
Eric Blake 已提交
358
VBOX_DRIVER_EXTRA_DIST =					\
359 360 361
		vbox/vbox_tmpl.c vbox/README			\
		vbox/vbox_MSCOMGlue.c vbox/vbox_MSCOMGlue.h	\
		vbox/vbox_XPCOMCGlue.c vbox/vbox_XPCOMCGlue.h
362

363
QEMU_DRIVER_SOURCES =						\
364
		qemu/qemu_capabilities.c qemu/qemu_capabilities.h\
365
		qemu/qemu_command.c qemu/qemu_command.h		\
366
		qemu/qemu_domain.c qemu/qemu_domain.h		\
367
		qemu/qemu_cgroup.c qemu/qemu_cgroup.h		\
368
		qemu/qemu_hostdev.c qemu/qemu_hostdev.h		\
369
		qemu/qemu_hotplug.c qemu/qemu_hotplug.h		\
370
		qemu/qemu_conf.c qemu/qemu_conf.h		\
371 372
		qemu/qemu_process.c qemu/qemu_process.h		\
		qemu/qemu_migration.c qemu/qemu_migration.h	\
373
		qemu/qemu_monitor.c qemu/qemu_monitor.h		\
374 375
		qemu/qemu_monitor_text.c			\
		qemu/qemu_monitor_text.h			\
D
Daniel P. Berrange 已提交
376 377 378
		qemu/qemu_monitor_json.c			\
		qemu/qemu_monitor_json.h			\
		qemu/qemu_driver.c qemu/qemu_driver.h		\
E
Eric Blake 已提交
379
		qemu/qemu_bridge_filter.c			\
380
		qemu/qemu_bridge_filter.h
R
Richard W.M. Jones 已提交
381

382 383
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
384
		xenapi/xenapi_driver_private.h					\
385 386
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

J
Jim Fehlig 已提交
387 388 389 390
LIBXL_DRIVER_SOURCES =						\
		libxl/libxl_conf.c libxl/libxl_conf.h		\
		libxl/libxl_driver.c libxl/libxl_driver.h

391
UML_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
392 393
		uml/uml_conf.c uml/uml_conf.h			\
		uml/uml_driver.c uml/uml_driver.h
394

395
ESX_DRIVER_SOURCES =						\
396
		esx/esx_private.h						\
397
		esx/esx_driver.c esx/esx_driver.h		\
398 399 400 401 402
		esx/esx_interface_driver.c esx/esx_interface_driver.h		\
		esx/esx_network_driver.c esx/esx_network_driver.h		\
		esx/esx_storage_driver.c esx/esx_storage_driver.h		\
		esx/esx_device_monitor.c esx/esx_device_monitor.h		\
		esx/esx_secret_driver.c esx/esx_secret_driver.h		\
M
Matthias Bolte 已提交
403
		esx/esx_nwfilter_driver.c esx/esx_nwfilter_driver.h		\
404 405
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
406
		esx/esx_vi_methods.c esx/esx_vi_methods.h	\
407
		esx/esx_vi_types.c esx/esx_vi_types.h
408

409
ESX_DRIVER_GENERATED =							\
410 411
		esx/esx_vi_methods.generated.c				\
		esx/esx_vi_methods.generated.h				\
412
		esx/esx_vi_methods.generated.macro			\
413 414 415 416 417
		esx/esx_vi_types.generated.c				\
		esx/esx_vi_types.generated.h				\
		esx/esx_vi_types.generated.typedef			\
		esx/esx_vi_types.generated.typeenum			\
		esx/esx_vi_types.generated.typetostring			\
418 419 420
		esx/esx_vi_types.generated.typefromstring		\
		esx/esx_vi.generated.c					\
		esx/esx_vi.generated.h
421 422 423 424 425 426 427

ESX_DRIVER_EXTRA_DIST =						\
		esx/README						\
		esx/esx_vi_generator.input				\
		esx/esx_vi_generator.py					\
		$(ESX_DRIVER_GENERATED)

M
Matthias Bolte 已提交
428 429 430 431 432 433 434 435
HYPERV_DRIVER_SOURCES =								\
		hyperv/hyperv_private.h							\
		hyperv/hyperv_driver.c hyperv/hyperv_driver.h				\
		hyperv/hyperv_interface_driver.c hyperv/hyperv_interface_driver.h	\
		hyperv/hyperv_network_driver.c hyperv/hyperv_network_driver.h		\
		hyperv/hyperv_storage_driver.c hyperv/hyperv_storage_driver.h		\
		hyperv/hyperv_device_monitor.c hyperv/hyperv_device_monitor.h		\
		hyperv/hyperv_secret_driver.c hyperv/hyperv_secret_driver.h		\
436
		hyperv/hyperv_nwfilter_driver.c hyperv/hyperv_nwfilter_driver.h		\
437
		hyperv/hyperv_util.c hyperv/hyperv_util.h				\
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
		hyperv/hyperv_wmi.c hyperv/hyperv_wmi.h					\
		hyperv/hyperv_wmi_classes.c hyperv/hyperv_wmi_classes.h			\
		hyperv/openwsman.h

HYPERV_DRIVER_GENERATED =							\
		hyperv/hyperv_wmi.generated.c					\
		hyperv/hyperv_wmi.generated.h					\
		hyperv/hyperv_wmi_classes.generated.c				\
		hyperv/hyperv_wmi_classes.generated.h				\
		hyperv/hyperv_wmi_classes.generated.typedef

HYPERV_DRIVER_EXTRA_DIST =							\
		hyperv/hyperv_wmi_generator.input				\
		hyperv/hyperv_wmi_generator.py					\
		$(HYPERV_DRIVER_GENERATED)

454
NETWORK_DRIVER_SOURCES =					\
455
		network/bridge_driver.h network/bridge_driver.c
456

457
INTERFACE_DRIVER_SOURCES =					\
458
		interface/netcf_driver.h interface/netcf_driver.c
459

460
SECRET_DRIVER_SOURCES =						\
461
		secret/secret_driver.h secret/secret_driver.c
462

463
# Storage backend specific impls
464
STORAGE_DRIVER_SOURCES =					\
465 466
		storage/storage_driver.h storage/storage_driver.c		\
		storage/storage_backend.h storage/storage_backend.c
467 468

STORAGE_DRIVER_FS_SOURCES =					\
469
		storage/storage_backend_fs.h storage/storage_backend_fs.c
R
Richard W.M. Jones 已提交
470

471
STORAGE_DRIVER_LVM_SOURCES =					\
472 473
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
474 475

STORAGE_DRIVER_ISCSI_SOURCES =					\
476
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
477

478
STORAGE_DRIVER_SCSI_SOURCES =					\
479
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
480

D
Dave Allan 已提交
481
STORAGE_DRIVER_MPATH_SOURCES =					\
482
		storage/storage_backend_mpath.h storage/storage_backend_mpath.c
D
Dave Allan 已提交
483

484
STORAGE_DRIVER_DISK_SOURCES =					\
485
		storage/storage_backend_disk.h storage/storage_backend_disk.c
486 487

STORAGE_HELPER_DISK_SOURCES =					\
488
		storage/parthelper.c
489

490 491 492
UTIL_IO_HELPER_SOURCES =					\
		util/iohelper.c

493 494 495
# Network filters
NWFILTER_DRIVER_SOURCES =					\
		nwfilter/nwfilter_driver.h nwfilter/nwfilter_driver.c	\
496 497 498
		nwfilter/nwfilter_gentech_driver.c			\
		nwfilter/nwfilter_gentech_driver.h			\
		nwfilter/nwfilter_ebiptables_driver.c			\
499 500 501
		nwfilter/nwfilter_ebiptables_driver.h			\
		nwfilter/nwfilter_learnipaddr.c				\
		nwfilter/nwfilter_learnipaddr.h
502

503

504
# Security framework and drivers for various models
505
SECURITY_DRIVER_SOURCES =					\
506 507 508 509 510
		security/security_driver.h security/security_driver.c \
		security/security_nop.h security/security_nop.c \
		security/security_stack.h security/security_stack.c \
		security/security_dac.h security/security_dac.c \
		security/security_manager.h security/security_manager.c
511

512
SECURITY_DRIVER_SELINUX_SOURCES =				\
513
		security/security_selinux.h security/security_selinux.c
514

J
Jamie Strandboge 已提交
515 516 517
SECURITY_DRIVER_APPARMOR_SOURCES =				\
		security/security_apparmor.h security/security_apparmor.c

518

519
NODE_DEVICE_DRIVER_SOURCES =					\
520 521 522
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
523 524

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
525
		node_device/node_device_hal.c			\
526
		node_device/node_device_hal.h
527

528
NODE_DEVICE_DRIVER_UDEV_SOURCES =				\
D
Daniel Veillard 已提交
529 530
		node_device/node_device_udev.c			\
		node_device/node_device_udev.h
531

J
Jiri Denemark 已提交
532 533 534 535 536
CPU_SOURCES =							\
		cpu/cpu.h cpu/cpu.c				\
		cpu/cpu_generic.h cpu/cpu_generic.c		\
		cpu/cpu_x86.h cpu/cpu_x86.c cpu/cpu_x86_data.h	\
		cpu/cpu_map.h cpu/cpu_map.c
537

538 539 540
VMX_SOURCES =							\
		vmx/vmx.c vmx/vmx.h

541 542
XENXS_SOURCES =							\
		xenxs/xenxs_private.h				\
543 544
		xenxs/xen_sxpr.c xenxs/xen_sxpr.h		\
		xenxs/xen_xm.c xenxs/xen_xm.h
545

J
Jiri Denemark 已提交
546 547
pkgdata_DATA =	cpu/cpu_map.xml

E
Eric Blake 已提交
548
EXTRA_DIST +=	$(pkgdata_DATA)
549

550 551 552 553 554 555
#########################
#
# Build up list of libvirt.la source files based on configure conditions
#
# First deal with sources usable in non-daemon context

556
noinst_LTLIBRARIES = libvirt_util.la
557 558
libvirt_la_LIBADD = $(libvirt_la_BUILT_LIBADD)
libvirt_la_BUILT_LIBADD = libvirt_util.la
559 560
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
561
libvirt_util_la_CFLAGS = $(CAPNG_CFLAGS) $(YAJL_CFLAGS) $(LIBNL_CFLAGS) \
562
		$(AM_CFLAGS) $(AUDIT_CFLAGS) $(DEVMAPPER_CFLAGS)
563
libvirt_util_la_LIBADD = $(CAPNG_LIBS) $(YAJL_LIBS) $(LIBNL_LIBS) \
E
Eric Blake 已提交
564
		$(THREAD_LIBS) $(AUDIT_LIBS) $(DEVMAPPER_LIBS)
565

566 567

noinst_LTLIBRARIES += libvirt_conf.la
568
libvirt_la_BUILT_LIBADD += libvirt_conf.la
569
libvirt_conf_la_SOURCES = $(CONF_SOURCES)
570 571
libvirt_conf_la_CFLAGS = $(AM_CFLAGS)
libvirt_conf_la_LDFLAGS = $(AM_LDFLAGS)
572

J
Jiri Denemark 已提交
573
noinst_LTLIBRARIES += libvirt_cpu.la
574
libvirt_la_BUILT_LIBADD += libvirt_cpu.la
J
Jiri Denemark 已提交
575
libvirt_cpu_la_CFLAGS = \
576
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
J
Jiri Denemark 已提交
577 578
libvirt_cpu_la_SOURCES = $(CPU_SOURCES)

579 580 581 582 583 584 585 586
if WITH_VMX
noinst_LTLIBRARIES += libvirt_vmx.la
libvirt_la_BUILT_LIBADD += libvirt_vmx.la
libvirt_vmx_la_CFLAGS = \
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_vmx_la_SOURCES = $(VMX_SOURCES)
endif

587
if WITH_XENXS
588 589 590 591 592 593 594
noinst_LTLIBRARIES += libvirt_xenxs.la
libvirt_la_BUILT_LIBADD += libvirt_xenxs.la
libvirt_xenxs_la_CFLAGS = \
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_xenxs_la_SOURCES = $(XENXS_SOURCES)
endif

595

596
noinst_LTLIBRARIES += libvirt_driver.la
597
libvirt_la_BUILT_LIBADD += libvirt_driver.la
598
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
599

M
Matthias Bolte 已提交
600
libvirt_driver_la_CFLAGS = $(NUMACTL_CFLAGS) $(GNUTLS_CFLAGS) \
601
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
M
Matthias Bolte 已提交
602
libvirt_driver_la_LIBADD = $(NUMACTL_LIBS) $(GNUTLS_LIBS) $(DLOPEN_LIBS)
603

604
USED_SYM_FILES = libvirt_private.syms
605

606
if WITH_TEST
607 608 609
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_test.la
else
610
noinst_LTLIBRARIES += libvirt_driver_test.la
611
libvirt_la_BUILT_LIBADD += libvirt_driver_test.la
612
endif
613
libvirt_driver_test_la_CFLAGS = \
614
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
615
if WITH_DRIVER_MODULES
616
libvirt_driver_test_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
617
endif
618
libvirt_driver_test_la_SOURCES = $(TEST_DRIVER_SOURCES)
619 620 621
endif

if WITH_REMOTE
622 623 624
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_remote.la
else
625
noinst_LTLIBRARIES += libvirt_driver_remote.la
626
libvirt_la_BUILT_LIBADD += libvirt_driver_remote.la
627
endif
628 629
libvirt_driver_remote_la_CFLAGS =				\
		$(GNUTLS_CFLAGS)				\
E
Eric Blake 已提交
630
		$(XDR_CFLAGS)					\
631
		-I@top_srcdir@/src/conf				\
632
		-I@top_srcdir@/src/rpc				\
633 634
		$(AM_CFLAGS)
libvirt_driver_remote_la_LDFLAGS = $(AM_LDFLAGS)
635 636 637 638
libvirt_driver_remote_la_LIBADD = $(GNUTLS_LIBS) \
                libvirt-net-rpc-client.la \
                libvirt-net-rpc-server.la \
                libvirt-net-rpc.la
639
if WITH_DRIVER_MODULES
640
libvirt_driver_remote_la_LIBADD += ../gnulib/lib/libgnu.la
641 642
libvirt_driver_remote_la_LDFLAGS += -module -avoid-version
endif
643
libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES)
644

C
Chris Lalancette 已提交
645

E
Eric Blake 已提交
646
$(srcdir)/remote/remote_driver.c: $(REMOTE_DRIVER_GENERATED)
C
Chris Lalancette 已提交
647

648 649
endif WITH_REMOTE

650
%protocol.c: %protocol.x %protocol.h $(srcdir)/rpc/genprotocol.pl
651
	$(AM_V_GEN)perl -w $(srcdir)/rpc/genprotocol.pl $(RPCGEN) -c \
E
Eric Blake 已提交
652
	       $< $@
653

654 655
%protocol.h: %protocol.x $(srcdir)/rpc/genprotocol.pl
	$(AM_V_GEN)perl -w $(srcdir)/rpc/genprotocol.pl $(RPCGEN) -h \
E
Eric Blake 已提交
656
	       $< $@
657

658
if WITH_XEN
659 660 661
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xen.la
else
662
noinst_LTLIBRARIES += libvirt_driver_xen.la
663
libvirt_la_BUILT_LIBADD += libvirt_driver_xen.la
664
endif
E
Eric Blake 已提交
665
libvirt_driver_xen_la_CFLAGS =					\
666
		$(XEN_CFLAGS)					\
667
		-I@top_srcdir@/src/conf				\
668
		-I@top_srcdir@/src/xenxs			\
669 670
		$(AM_CFLAGS)
libvirt_driver_xen_la_LDFLAGS = $(AM_LDFLAGS)
671
libvirt_driver_xen_la_LIBADD = $(XEN_LIBS)
672
if WITH_DRIVER_MODULES
673
libvirt_driver_xen_la_LIBADD += ../gnulib/lib/libgnu.la
674 675
libvirt_driver_xen_la_LDFLAGS += -module -avoid-version
endif
676
libvirt_driver_xen_la_SOURCES = $(XEN_DRIVER_SOURCES)
677 678
endif

679 680 681 682 683
if WITH_PHYP
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_phyp.la
else
noinst_LTLIBRARIES += libvirt_driver_phyp.la
684
libvirt_la_BUILT_LIBADD += libvirt_driver_phyp.la
685
endif
686
libvirt_driver_phyp_la_LIBADD = $(LIBSSH2_LIBS)
687 688 689 690
if WITH_DRIVER_MODULES
libvirt_driver_phyp_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_phyp_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
endif
691
libvirt_driver_phyp_la_CFLAGS = $(LIBSSH2_CFLAGS) \
692
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
693 694 695
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
endif

696
if WITH_OPENVZ
697 698 699
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_openvz.la
else
700
noinst_LTLIBRARIES += libvirt_driver_openvz.la
701
libvirt_la_BUILT_LIBADD += libvirt_driver_openvz.la
702
endif
703
libvirt_driver_openvz_la_CFLAGS = \
704
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
705
if WITH_DRIVER_MODULES
706
libvirt_driver_openvz_la_LIBADD = ../gnulib/lib/libgnu.la
707
libvirt_driver_openvz_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
708
endif
709
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
710 711
endif

712 713 714 715 716 717 718 719
if WITH_VMWARE
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_vmware.la
else
noinst_LTLIBRARIES += libvirt_driver_vmware.la
libvirt_la_BUILT_LIBADD += libvirt_driver_vmware.la
endif
libvirt_driver_vmware_la_CFLAGS = \
E
Eric Blake 已提交
720
		-I@top_srcdir@/src/conf -I@top_srcdir@/src/vmx $(AM_CFLAGS)
721
if WITH_DRIVER_MODULES
722
libvirt_driver_vmware_la_LIBADD = ../gnulib/lib/libgnu.la
723 724 725 726 727
libvirt_driver_vmware_la_LDFLAGS = -module -avoid-version
endif
libvirt_driver_vmware_la_SOURCES = $(VMWARE_DRIVER_SOURCES)
endif

728 729 730 731 732
if WITH_VBOX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_vbox.la
else
noinst_LTLIBRARIES += libvirt_driver_vbox.la
733
libvirt_la_BUILT_LIBADD += libvirt_driver_vbox.la
734
endif
735
libvirt_driver_vbox_la_CFLAGS = \
736
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
737
libvirt_driver_vbox_la_LIBADD = $(DLOPEN_LIBS) $(MSCOM_LIBS)
738
if WITH_DRIVER_MODULES
739
libvirt_driver_vbox_la_LIBADD += ../gnulib/lib/libgnu.la
740
libvirt_driver_vbox_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
741 742 743 744
endif
libvirt_driver_vbox_la_SOURCES = $(VBOX_DRIVER_SOURCES)
endif

745 746 747 748 749
if WITH_XENAPI
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xenapi.la
else
noinst_LTLIBRARIES += libvirt_driver_xenapi.la
750
libvirt_la_BUILT_LIBADD += libvirt_driver_xenapi.la
751 752
endif
libvirt_driver_xenapi_la_CFLAGS = $(LIBXENSERVER_CFLAGS) $(LIBCURL_CFLAGS) \
753 754
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_xenapi_la_LDFLAGS = $(AM_LDFLAGS)
755
libvirt_driver_xenapi_la_LIBADD = $(LIBXENSERVER_LIBS) $(LIBCURL_LIBS)
756
if WITH_DRIVER_MODULES
757
libvirt_driver_xenapi_la_LIBADD += ../gnulib/lib/libgnu.la
758 759 760 761 762
libvirt_driver_xenapi_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_xenapi_la_SOURCES = $(XENAPI_DRIVER_SOURCES)
endif

J
Jim Fehlig 已提交
763 764 765 766 767 768 769 770
if WITH_LIBXL
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_libxl.la
else
noinst_LTLIBRARIES += libvirt_driver_libxl.la
# Stateful, so linked to daemon instead
#libvirt_la_BUILT_LIBADD += libvirt_driver_libxl.la
endif
771 772 773 774
libvirt_driver_libxl_la_CFLAGS = $(LIBXL_CFLAGS)		\
		-I@top_srcdir@/src/conf				\
		-I@top_srcdir@/src/xenxs			\
		$(AM_CFLAGS)
J
Jim Fehlig 已提交
775
libvirt_driver_libxl_la_LDFLAGS = $(AM_LDFLAGS)
776
libvirt_driver_libxl_la_LIBADD = $(LIBXL_LIBS) libvirt_xenxs.la
J
Jim Fehlig 已提交
777 778 779 780 781 782 783
if WITH_DRIVER_MODULES
libvirt_driver_libxl_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_libxl_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_libxl_la_SOURCES = $(LIBXL_DRIVER_SOURCES)
endif

784
if WITH_QEMU
785 786 787
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_qemu.la
else
788
noinst_LTLIBRARIES += libvirt_driver_qemu.la
789
# Stateful, so linked to daemon instead
790
#libvirt_la_BUILT_LIBADD += libvirt_driver_qemu.la
791
endif
792
libvirt_driver_qemu_la_CFLAGS = $(NUMACTL_CFLAGS) \
793 794
                                $(GNUTLS_CFLAGS) \
                                $(LIBXML_CFLAGS) \
795 796
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_qemu_la_LDFLAGS = $(AM_LDFLAGS)
797
libvirt_driver_qemu_la_LIBADD = $(NUMACTL_LIBS) \
798 799 800
				$(CAPNG_LIBS) \
                                $(GNUTLS_LIBS) \
                                $(LIBXML_LIBS)
801
if WITH_DRIVER_MODULES
802
libvirt_driver_qemu_la_LIBADD += ../gnulib/lib/libgnu.la
803 804
libvirt_driver_qemu_la_LDFLAGS += -module -avoid-version
endif
805
libvirt_driver_qemu_la_SOURCES = $(QEMU_DRIVER_SOURCES)
806

A
Amy Griffis 已提交
807
conf_DATA += qemu/qemu.conf
808

809 810
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
811

812
endif
813 814
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug \
		qemu/test_libvirtd_qemu.aug qemu/THREADS.txt
815

816 817

if WITH_LXC
818 819 820
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_lxc.la
else
821
noinst_LTLIBRARIES += libvirt_driver_lxc.la
822
# Stateful, so linked to daemon instead
823
#libvirt_la_BUILT_LIBADD += libvirt_driver_lxc.la
824
endif
825
libvirt_driver_lxc_la_CFLAGS = \
826
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
827 828 829 830 831 832 833
libvirt_driver_lxc_la_LIBADD = $(CAPNG_LIBS)
if WITH_SECDRIVER_SELINUX
libvirt_driver_lxc_la_LIBADD += $(SELINUX_LIBS)
endif
if WITH_SECDRIVER_APPARMOR
libvirt_driver_lxc_la_LIBADD += $(APPARMOR_LIBS)
endif
834
if WITH_DRIVER_MODULES
835
libvirt_driver_lxc_la_LIBADD += ../gnulib/lib/libgnu.la
836
libvirt_driver_lxc_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
837
endif
838
libvirt_driver_lxc_la_SOURCES = $(LXC_DRIVER_SOURCES)
A
Amy Griffis 已提交
839 840 841

conf_DATA += lxc/lxc.conf

842 843 844
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

845
endif
846
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
847

848
if WITH_UML
849 850 851
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_uml.la
else
852 853
noinst_LTLIBRARIES += libvirt_driver_uml.la
# Stateful, so linked to daemon instead
854
#libvirt_la_BUILT_LIBADD += libvirt_driver_uml.la
855
endif
856
libvirt_driver_uml_la_CFLAGS = $(NUMACTL_CFLAGS) \
857 858
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_uml_la_LDFLAGS = $(AM_LDFLAGS)
859
libvirt_driver_uml_la_LIBADD = $(NUMACTL_LIBS)
860
if WITH_DRIVER_MODULES
861
libvirt_driver_uml_la_LIBADD += ../gnulib/lib/libgnu.la
862 863
libvirt_driver_uml_la_LDFLAGS += -module -avoid-version
endif
864 865
libvirt_driver_uml_la_SOURCES = $(UML_DRIVER_SOURCES)
endif
866

D
Daniel Veillard 已提交
867

868
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
869

870 871 872
$(ESX_DRIVER_GENERATED): $(srcdir)/esx/esx_vi_generator.input \
                         $(srcdir)/esx/esx_vi_generator.py
	$(AM_V_GEN)srcdir=$(srcdir) $(PYTHON) $(srcdir)/esx/esx_vi_generator.py
D
Daniel Veillard 已提交
873

874 875 876 877 878
if WITH_ESX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_esx.la
else
noinst_LTLIBRARIES += libvirt_driver_esx.la
879
libvirt_la_BUILT_LIBADD += libvirt_driver_esx.la
880
endif
881
libvirt_driver_esx_la_CFLAGS = $(LIBCURL_CFLAGS) \
882
		-I@top_srcdir@/src/conf -I@top_srcdir@/src/vmx $(AM_CFLAGS)
883
libvirt_driver_esx_la_LDFLAGS = $(AM_LDFLAGS)
884
libvirt_driver_esx_la_LIBADD = $(LIBCURL_LIBS)
885
if WITH_DRIVER_MODULES
886
libvirt_driver_esx_la_LIBADD += ../gnulib/lib/libgnu.la
887 888 889
libvirt_driver_esx_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_esx_la_SOURCES = $(ESX_DRIVER_SOURCES)
890
libvirt_driver_esx_la_DEPENDENCIES = $(ESX_DRIVER_GENERATED)
891 892
endif

M
Matthias Bolte 已提交
893

894 895 896 897 898 899
BUILT_SOURCES += $(HYPERV_DRIVER_GENERATED)

$(HYPERV_DRIVER_GENERATED): $(srcdir)/hyperv/hyperv_wmi_generator.input \
                            $(srcdir)/hyperv/hyperv_wmi_generator.py
	$(AM_V_GEN)srcdir=$(srcdir) $(PYTHON) $(srcdir)/hyperv/hyperv_wmi_generator.py

M
Matthias Bolte 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
if WITH_HYPERV
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_hyperv.la
else
noinst_LTLIBRARIES += libvirt_driver_hyperv.la
libvirt_la_BUILT_LIBADD += libvirt_driver_hyperv.la
endif
libvirt_driver_hyperv_la_CFLAGS = $(OPENWSMAN_CFLAGS) \
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_hyperv_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_hyperv_la_LIBADD = $(OPENWSMAN_LIBS)
if WITH_DRIVER_MODULES
libvirt_driver_hyperv_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_hyperv_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_hyperv_la_SOURCES = $(HYPERV_DRIVER_SOURCES)
endif

918
if WITH_NETWORK
919 920 921
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_network.la
else
922
noinst_LTLIBRARIES += libvirt_driver_network.la
923
# Stateful, so linked to daemon instead
924
#libvirt_la_BUILT_LIBADD += libvirt_driver_network.la
925
endif
926
libvirt_driver_network_la_CFLAGS = \
927
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
928
if WITH_DRIVER_MODULES
929
libvirt_driver_network_la_LIBADD = ../gnulib/lib/libgnu.la
930
libvirt_driver_network_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
931
endif
932
libvirt_driver_network_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
933
endif
934 935 936 937
EXTRA_DIST += network/default.xml



938

D
Daniel Veillard 已提交
939
if WITH_NETCF
940 941 942 943
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_interface.la
else
noinst_LTLIBRARIES += libvirt_driver_interface.la
944
libvirt_la_BUILT_LIBADD += libvirt_driver_interface.la
945
endif
946
libvirt_driver_interface_la_CFLAGS = $(NETCF_CFLAGS) \
947 948
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_interface_la_LDFLAGS = $(AM_LDFLAGS)
949
libvirt_driver_interface_la_LIBADD = $(NETCF_LIBS)
950
if WITH_DRIVER_MODULES
951
libvirt_driver_interface_la_LIBADD += ../gnulib/lib/libgnu.la
952 953 954
libvirt_driver_interface_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_interface_la_SOURCES = $(INTERFACE_DRIVER_SOURCES)
D
Daniel Veillard 已提交
955 956
endif

D
Daniel P. Berrange 已提交
957
if WITH_SECRETS
958 959 960 961
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_secret.la
else
noinst_LTLIBRARIES += libvirt_driver_secret.la
962
# Stateful, so linked to daemon instead
963
#libvirt_la_BUILT_LIBADD += libvirt_driver_secret.la
964
endif
965
libvirt_driver_secret_la_CFLAGS = \
966
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
967
if WITH_DRIVER_MODULES
968
libvirt_driver_secret_la_LIBADD = ../gnulib/lib/libgnu.la
969
libvirt_driver_secret_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
970 971
endif
libvirt_driver_secret_la_SOURCES = $(SECRET_DRIVER_SOURCES)
D
Daniel P. Berrange 已提交
972
endif
973

974 975
# Needed to keep automake quiet about conditionals
libvirt_driver_storage_la_SOURCES =
976
libvirt_driver_storage_la_CFLAGS = \
977 978
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_storage_la_LDFLAGS = $(AM_LDFLAGS)
979
libvirt_driver_storage_la_LIBADD =
980 981 982 983 984 985
if WITH_SECDRIVER_SELINUX
libvirt_driver_storage_la_LIBADD += $(SELINUX_LIBS)
endif
if WITH_SECDRIVER_APPARMOR
libvirt_driver_storage_la_LIBADD += $(APPARMOR_LIBS)
endif
O
Osier Yang 已提交
986 987 988 989
if HAVE_LIBBLKID
libvirt_driver_storage_la_CFLAGS += $(BLKID_CFLAGS)
libvirt_driver_storage_la_LIBADD += $(BLKID_LIBS)
endif
990
if WITH_STORAGE_DIR
991 992 993
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_storage.la
else
994
noinst_LTLIBRARIES += libvirt_driver_storage.la
995
# Stateful, so linked to daemon instead
996
#libvirt_la_BUILT_LIBADD += libvirt_driver_storage.la
997 998
endif
if WITH_DRIVER_MODULES
999
libvirt_driver_storage_la_LIBADD += ../gnulib/lib/libgnu.la
1000
libvirt_driver_storage_la_LDFLAGS += -module -avoid-version
1001
endif
1002 1003
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SOURCES)
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_FS_SOURCES)
1004 1005
endif

1006
if WITH_STORAGE_LVM
1007
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
1008 1009
endif

1010
if WITH_STORAGE_ISCSI
1011
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
1012 1013
endif

1014 1015 1016 1017
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
1018 1019 1020
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
1021
libvirt_driver_storage_la_LIBADD += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
1022 1023
endif

1024
if WITH_STORAGE_DISK
1025
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
1026
endif
1027

1028 1029 1030 1031 1032 1033 1034
if WITH_NODE_DEVICES
# Needed to keep automake quiet about conditionals
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_nodedev.la
else
noinst_LTLIBRARIES += libvirt_driver_nodedev.la
# Stateful, so linked to daemon instead
1035
#libvirt_la_BUILT_LIBADD += libvirt_driver_nodedev.la
1036 1037 1038
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

1039
libvirt_driver_nodedev_la_CFLAGS = \
1040 1041
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_nodedev_la_LDFLAGS = $(AM_LDFLAGS)
1042 1043 1044 1045
libvirt_driver_nodedev_la_LIBADD =       \
		libvirt_util.la          \
		../gnulib/lib/libgnu.la

1046 1047 1048
if HAVE_HAL
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
1049
libvirt_driver_nodedev_la_LIBADD += $(HAL_LIBS)
1050
endif
1051 1052
if HAVE_UDEV
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
1053
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
1054
libvirt_driver_nodedev_la_LIBADD += $(UDEV_LIBS) $(PCIACCESS_LIBS)
1055
endif
1056 1057

if WITH_DRIVER_MODULES
1058
libvirt_driver_nodedev_la_LIBADD += ../gnulib/lib/libgnu.la
1059 1060 1061 1062 1063
libvirt_driver_nodedev_la_LDFLAGS += -module -avoid-version
endif
endif


1064 1065 1066 1067
if WITH_NWFILTER
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_nwfilter.la
else
1068
libvirt_la_BUILT_LIBADD += libvirt_driver_nwfilter.la
1069 1070
noinst_LTLIBRARIES += libvirt_driver_nwfilter.la
endif
1071
libvirt_driver_nwfilter_la_CFLAGS = $(LIBPCAP_CFLAGS) \
1072 1073
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_nwfilter_la_LDFLAGS = $(LD_AMFLAGS)
1074
libvirt_driver_nwfilter_la_LIBADD = $(LIBPCAP_LIBS)
1075
if WITH_DRIVER_MODULES
1076
libvirt_driver_nwfilter_la_LIBADD += ../gnulib/lib/libgnu.la
1077
libvirt_driver_nwfilter_la_LDFLAGS += -module -avoid-version
1078 1079 1080 1081 1082
endif
libvirt_driver_nwfilter_la_SOURCES = $(NWFILTER_DRIVER_SOURCES)
endif


1083 1084
libvirt_driver_security_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
noinst_LTLIBRARIES += libvirt_driver_security.la
1085
libvirt_la_BUILT_LIBADD += libvirt_driver_security.la
1086
libvirt_driver_security_la_CFLAGS = \
1087 1088
		-I@top_srcdir@/src/conf $(AM_CFLAGS)
libvirt_driver_security_la_LDFLAGS = $(AM_LDFLAGS)
1089
libvirt_driver_security_la_LIBADD =
1090 1091
if WITH_SECDRIVER_SELINUX
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
J
Jim Fehlig 已提交
1092
libvirt_driver_security_la_CFLAGS += $(SELINUX_CFLAGS)
1093
libvirt_driver_security_la_LIBADD += $(SELINUX_LIBS)
1094
endif
J
Jamie Strandboge 已提交
1095 1096 1097
if WITH_SECDRIVER_APPARMOR
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
libvirt_driver_security_la_CFLAGS += $(APPARMOR_CFLAGS)
1098
libvirt_driver_security_la_LIBADD += $(APPARMOR_LIBS)
J
Jamie Strandboge 已提交
1099
endif
1100

1101 1102 1103 1104 1105 1106 1107
# Add all conditional sources just in case...
EXTRA_DIST +=							\
		$(TEST_DRIVER_SOURCES)				\
		$(REMOTE_DRIVER_SOURCES)			\
		$(XEN_DRIVER_SOURCES)				\
		$(QEMU_DRIVER_SOURCES)				\
		$(LXC_DRIVER_SOURCES)				\
1108
		$(UML_DRIVER_SOURCES)				\
1109
		$(OPENVZ_DRIVER_SOURCES)			\
1110
		$(PHYP_DRIVER_SOURCES)				\
1111
		$(VBOX_DRIVER_SOURCES)				\
1112
		$(XENAPI_DRIVER_SOURCES)			\
J
Jim Fehlig 已提交
1113
		$(LIBXL_DRIVER_SOURCES)			\
1114
		$(ESX_DRIVER_SOURCES)				\
1115
		$(ESX_DRIVER_EXTRA_DIST)			\
M
Matthias Bolte 已提交
1116
		$(HYPERV_DRIVER_SOURCES)			\
1117
		$(HYPERV_DRIVER_EXTRA_DIST)			\
1118
		$(NETWORK_DRIVER_SOURCES)			\
1119
		$(INTERFACE_DRIVER_SOURCES)			\
1120 1121 1122 1123
		$(STORAGE_DRIVER_SOURCES)			\
		$(STORAGE_DRIVER_FS_SOURCES)			\
		$(STORAGE_DRIVER_LVM_SOURCES)			\
		$(STORAGE_DRIVER_ISCSI_SOURCES)			\
1124
		$(STORAGE_DRIVER_SCSI_SOURCES)			\
D
Dave Allan 已提交
1125
		$(STORAGE_DRIVER_MPATH_SOURCES)			\
1126 1127 1128
		$(STORAGE_DRIVER_DISK_SOURCES)			\
		$(NODE_DEVICE_DRIVER_SOURCES)			\
		$(NODE_DEVICE_DRIVER_HAL_SOURCES)		\
1129
		$(NODE_DEVICE_DRIVER_UDEV_SOURCES)		\
1130
		$(NWFILTER_DRIVER_SOURCES)			\
1131
		$(SECURITY_DRIVER_SELINUX_SOURCES)		\
J
Jamie Strandboge 已提交
1132
		$(SECURITY_DRIVER_APPARMOR_SOURCES)		\
D
Daniel P. Berrange 已提交
1133
		$(SECRET_DRIVER_SOURCES)			\
1134
		$(VBOX_DRIVER_EXTRA_DIST)			\
1135 1136
		$(VMWARE_DRIVER_SOURCES)			\
		$(XENXS_SOURCES)
1137

1138 1139 1140 1141
check-local: augeas-check

.PHONY: augeas-check
augeas-check:
1142
if WITH_QEMU
1143
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
1144 1145 1146 1147 1148
	    '$(AUGPARSE)' -I $(srcdir)/qemu \
	    $(srcdir)/qemu/test_libvirtd_qemu.aug; \
	fi
endif
if WITH_LXC
1149
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
1150 1151 1152 1153
	    '$(AUGPARSE)' -I $(srcdir)/lxc \
	    $(srcdir)/lxc/test_libvirtd_lxc.aug; \
	fi
endif
1154 1155 1156 1157
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
	    '$(AUGPARSE)' -I $(srcdir)/locking \
	    $(srcdir)/locking/test_libvirt_sanlock.aug; \
	fi
1158

1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
#
# Build our version script.  This is composed of three parts:
#
# 1. libvirt_public.syms - public API.  These functions are always
# present in the library and should never change incompatibly.
#
# 2. libvirt_private.syms - private API.  These symbols are private and
# semantics may change on every release, hence the version number is
# spliced in at build time. This ensures that if libvirtd, virsh, or a
# driver module was built against one libvirt release, it will refuse to
# load with another where symbols may have same names but different
# semantics. Such symbols should never be visible in an (installed)
# public header file.
#
# 3. libvirt_*.syms - dynamic private API.  Like libvirt_private.syms,
# except that build options (such as --enable-debug) can mean these
# symbols aren't present at all.
#

1178
if WITH_DRIVER_MODULES
1179
USED_SYM_FILES += libvirt_driver_modules.syms
1180
endif
1181

1182
if WITH_LINUX
1183
USED_SYM_FILES += libvirt_linux.syms
1184
endif
1185

1186 1187
if HAVE_DBUS
USED_SYM_FILES += libvirt_dbus.syms
1188
endif
1189

1190 1191 1192 1193
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

1194 1195 1196 1197
if WITH_NWFILTER
USED_SYM_FILES += libvirt_nwfilter.syms
endif

1198 1199 1200 1201
if WITH_VMX
USED_SYM_FILES += libvirt_vmx.syms
endif

1202 1203 1204 1205
if WITH_XENXS
USED_SYM_FILES += libvirt_xenxs.syms
endif

1206 1207 1208 1209
if WITH_NETWORK
USED_SYM_FILES += libvirt_network.syms
endif

E
Eric Blake 已提交
1210 1211 1212 1213
if HAVE_SASL
USED_SYM_FILES += libvirt_sasl.syms
endif

1214 1215 1216 1217
EXTRA_DIST += \
  libvirt_public.syms		\
  libvirt_private.syms		\
  libvirt_driver_modules.syms	\
E
Eric Blake 已提交
1218
  libvirt_daemon.syms		\
1219
  libvirt_linux.syms		\
1220
  libvirt_dbus.syms		\
E
Eric Blake 已提交
1221 1222 1223
  libvirt_network.syms		\
  libvirt_nwfilter.syms		\
  libvirt_sasl.syms		\
1224
  libvirt_vmx.syms		\
E
Eric Blake 已提交
1225
  libvirt_xenxs.syms
1226

1227 1228 1229
GENERATED_SYM_FILES = libvirt.syms libvirt.def libvirt_qemu.def

BUILT_SOURCES += $(GENERATED_SYM_FILES)
1230

1231 1232
libvirt.syms: libvirt_public.syms $(USED_SYM_FILES) \
		$(top_builddir)/config.status
1233 1234 1235 1236 1237 1238
	$(AM_V_GEN)rm -f $@-tmp $@ ; \
	printf '# WARNING: generated from the following:\n# $^\n\n' >$@-tmp && \
	cat $(srcdir)/libvirt_public.syms >>$@-tmp && \
	printf '\n\n# Private symbols\n\n' >>$@-tmp && \
	printf 'LIBVIRT_PRIVATE_$(VERSION) {\n\n'  >>$@-tmp && \
	printf 'global:\n\n' >>$@-tmp && \
1239
	for file in $(USED_SYM_FILES); do \
1240
	    cat $(srcdir)/$$file >>$@-tmp; \
1241 1242 1243
	done && \
	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp && \
	chmod a-w $@-tmp && \
1244
	mv $@-tmp libvirt.syms
1245

1246 1247 1248
libvirt.def: libvirt.syms
	$(AM_V_GEN)rm -f -- $@-tmp $@ ; \
	printf 'EXPORTS\n' > $@-tmp && \
E
Eric Blake 已提交
1249
	sed -e '/^$$/d; /#/d; /:/d; /}/d; /\*/d; /LIBVIRT_/d; s/[	 ]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \
1250 1251 1252
	chmod a-w $@-tmp && \
	mv $@-tmp libvirt.def

1253 1254 1255
libvirt_qemu.def: $(srcdir)/libvirt_qemu.syms
	$(AM_V_GEN)rm -f -- $@-tmp $@ ; \
	printf 'EXPORTS\n' > $@-tmp && \
E
Eric Blake 已提交
1256
	sed -e '/^$$/d; /#/d; /:/d; /}/d; /\*/d; /LIBVIRT_/d; s/[	 ]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \
1257 1258 1259
	chmod a-w $@-tmp && \
	mv $@-tmp libvirt_qemu.def

1260 1261
# Empty source list - it merely links a bunch of convenience libs together
libvirt_la_SOURCES =
1262
libvirt_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE) \
E
Eric Blake 已提交
1263
		     -version-info $(LIBVIRT_VERSION_INFO) \
1264
		    $(LIBVIRT_NODELETE) $(AM_LDFLAGS) \
1265
		    $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
1266
libvirt_la_BUILT_LIBADD += ../gnulib/lib/libgnu.la
1267
libvirt_la_LIBADD += $(LIBXML_LIBS) \
1268
		    $(DRIVER_MODULE_LIBS) \
1269
		    $(CYGWIN_EXTRA_LIBADD)
1270
libvirt_la_CFLAGS = -DIN_LIBVIRT $(AM_CFLAGS)
1271 1272 1273 1274 1275 1276
# Because we specify libvirt_la_DEPENDENCIES for $(LIBVIRT_SYMBOL_FILE), we
# lose automake's automatic dependencies on an appropriate subset of
# $(libvirt_la_LIBADD).  But we were careful to create
# $(libvirt_la_BUILT_LIBADD) as the subset that automake would have
# picked out for us.
libvirt_la_DEPENDENCIES = $(libvirt_la_BUILT_LIBADD) $(LIBVIRT_SYMBOL_FILE)
1277

1278
if WITH_DTRACE
1279 1280
libvirt_la_BUILT_LIBADD += probes.o
libvirt_la_DEPENDENCIES += probes.o
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
nodist_libvirt_la_SOURCES = probes.h

BUILT_SOURCES += probes.h libvirt_probes.stp libvirt_functions.stp

tapsetdir = $(datadir)/systemtap/tapset
tapset_DATA = libvirt_probes.stp libvirt_functions.stp

probes.h: probes.d
	$(AM_V_GEN)$(DTRACE) -o $@ -h -s $<

probes.o: probes.d
	$(AM_V_GEN)$(DTRACE) -o $@ -G -s $<

J
Jiri Denemark 已提交
1294 1295 1296 1297
RPC_PROBE_FILES = $(srcdir)/rpc/virnetprotocol.x \
		  $(srcdir)/rpc/virkeepaliveprotocol.x \
		  $(srcdir)/remote/remote_protocol.x \
		  $(srcdir)/remote/qemu_protocol.x
1298 1299 1300 1301 1302

libvirt_functions.stp: $(RPC_PROBE_FILES) $(srcdir)/rpc/gensystemtap.pl
	$(AM_V_GEN)perl -w $(srcdir)/rpc/gensystemtap.pl $(RPC_PROBE_FILES) > $@

libvirt_probes.stp: probes.d $(srcdir)/dtrace2systemtap.pl
1303
	$(AM_V_GEN)perl -w $(srcdir)/dtrace2systemtap.pl $(bindir) $(sbindir) $(libdir) $< > $@
1304 1305 1306 1307 1308 1309 1310

CLEANFILES += probes.h probes.o libvirt_functions.stp libvirt_probes.stp
endif

EXTRA_DIST += probes.d


1311 1312 1313
# Create an automake "convenience library" version of libvirt_la,
# just for testing, since the test harness requires access to internal
# bits and pieces that we don't want to make publicly accessible.
1314
noinst_LTLIBRARIES += libvirt_test.la
1315

1316
# Remove version script from convenience library
1317 1318
test_LDFLAGS =						\
  $$(echo '$(libvirt_la_LDFLAGS)'			\
1319
     |sed 's!$(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE)!!'	\
1320
     |sed 's!-version-info $(LIBVIRT_VERSION_INFO)!!')
1321 1322 1323 1324

# Just like the above, but with a slightly different set of public symbols.
libvirt_test_la_SOURCES = $(libvirt_la_SOURCES)
libvirt_test_la_LIBADD = $(libvirt_la_LIBADD)
1325 1326
libvirt_test_la_LDFLAGS = $(test_LDFLAGS) $(AM_LDFLAGS)
libvirt_test_la_CFLAGS = $(AM_CFLAGS)
1327

C
Chris Lalancette 已提交
1328 1329
libvirt_qemu_la_SOURCES = libvirt-qemu.c
libvirt_qemu_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_QEMU_SYMBOL_FILE) \
E
Eric Blake 已提交
1330 1331
			  -version-info $(LIBVIRT_VERSION_INFO) \
			  $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS) \
1332 1333
			  $(AM_LDFLAGS)
libvirt_qemu_la_CFLAGS = $(AM_CFLAGS)
C
Chris Lalancette 已提交
1334
libvirt_qemu_la_LIBADD = libvirt.la $(CYGWIN_EXTRA_LIBADD)
E
Eric Blake 已提交
1335
EXTRA_DIST += $(LIBVIRT_QEMU_SYMBOL_FILE)
1336

1337 1338 1339 1340 1341 1342 1343
if HAVE_SANLOCK
lockdriverdir = $(libdir)/libvirt/lock-driver
lockdriver_LTLIBRARIES = sanlock.la

sanlock_la_SOURCES = $(LOCK_DRIVER_SANLOCK_SOURCES)
sanlock_la_CFLAGS = $(AM_CLFAGS)
sanlock_la_LDFLAGS = -module -avoid-version
1344
sanlock_la_LIBADD = -lsanlock_client \
1345 1346 1347 1348 1349 1350
		../gnulib/lib/libgnu.la

augeas_DATA += locking/libvirt_sanlock.aug
augeastest_DATA += locking/test_libvirt_sanlock.aug

$(builddir)/locking/%-sanlock.conf: $(srcdir)/locking/sanlock.conf
1351
	$(AM_V_GEN)$(MKDIR_P) locking ; \
1352 1353 1354 1355 1356
	cp $< $@

if WITH_QEMU
conf_DATA += locking/qemu-sanlock.conf
BUILT_SOURCES += locking/qemu-sanlock.conf
E
Eric Blake 已提交
1357
DISTCLEANFILES += locking/qemu-sanlock.conf
1358
endif
1359
else
1360
EXTRA_DIST += $(LOCK_DRIVER_SANLOCK_SOURCES)
1361
endif
1362 1363 1364
EXTRA_DIST += locking/sanlock.conf \
	locking/libvirt_sanlock.aug \
	locking/test_libvirt_sanlock.aug
1365

1366 1367 1368 1369
noinst_LTLIBRARIES += \
	libvirt-net-rpc.la \
	libvirt-net-rpc-server.la \
	libvirt-net-rpc-client.la
1370

1371
EXTRA_DIST += \
E
Eric Blake 已提交
1372 1373 1374 1375
	dtrace2systemtap.pl \
	rpc/gendispatch.pl \
	rpc/genprotocol.pl \
	rpc/gensystemtap.pl \
J
Jiri Denemark 已提交
1376 1377
	rpc/virnetprotocol.x \
	rpc/virkeepaliveprotocol.x
1378

E
Eric Blake 已提交
1379 1380
VIR_NET_RPC_GENERATED = \
	$(srcdir)/rpc/virnetprotocol.h \
J
Jiri Denemark 已提交
1381 1382 1383
	$(srcdir)/rpc/virnetprotocol.c \
	$(srcdir)/rpc/virkeepaliveprotocol.h \
	$(srcdir)/rpc/virkeepaliveprotocol.c
1384

1385
BUILT_SOURCES += $(VIR_NET_RPC_GENERATED)
1386

1387
libvirt_net_rpc_la_SOURCES = \
1388
	rpc/virnetmessage.h rpc/virnetmessage.c \
1389
	rpc/virnetprotocol.h rpc/virnetprotocol.c \
1390
	rpc/virnetsocket.h rpc/virnetsocket.c \
J
Jiri Denemark 已提交
1391
	rpc/virnettlscontext.h rpc/virnettlscontext.c \
1392 1393
	rpc/virkeepaliveprotocol.h rpc/virkeepaliveprotocol.c \
	rpc/virkeepalive.h rpc/virkeepalive.c
1394 1395 1396 1397 1398 1399 1400
if HAVE_SASL
libvirt_net_rpc_la_SOURCES += \
	rpc/virnetsaslcontext.h rpc/virnetsaslcontext.c
else
EXTRA_DIST += \
	rpc/virnetsaslcontext.h rpc/virnetsaslcontext.c
endif
1401
libvirt_net_rpc_la_CFLAGS = \
1402
			$(GNUTLS_CFLAGS) \
1403
			$(SASL_CFLAGS) \
1404
			$(XDR_CFLAGS) \
1405 1406
			$(AM_CFLAGS)
libvirt_net_rpc_la_LDFLAGS = \
1407
			$(GNUTLS_LIBS) \
1408
			$(SASL_LIBS) \
1409 1410 1411 1412 1413 1414
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)

1415 1416 1417 1418 1419
libvirt_net_rpc_server_la_SOURCES = \
	rpc/virnetserverprogram.h rpc/virnetserverprogram.c \
	rpc/virnetserverservice.h rpc/virnetserverservice.c \
	rpc/virnetserverclient.h rpc/virnetserverclient.c \
	rpc/virnetserver.h rpc/virnetserver.c
1420 1421 1422 1423 1424 1425 1426
if HAVE_AVAHI
libvirt_net_rpc_server_la_SOURCES += \
	rpc/virnetservermdns.h rpc/virnetservermdns.c
else
EXTRA_DIST += \
	rpc/virnetservermdns.h rpc/virnetservermdns.c
endif
1427
libvirt_net_rpc_server_la_CFLAGS = \
1428
			$(AVAHI_CFLAGS) \
E
Eric Blake 已提交
1429
			$(XDR_CFLAGS) \
J
Jim Fehlig 已提交
1430 1431
			$(AM_CFLAGS) \
			$(POLKIT_CFLAGS)
1432 1433
libvirt_net_rpc_server_la_LDFLAGS = \
			$(AM_LDFLAGS) \
1434
			$(AVAHI_LIBS) \
J
Jim Fehlig 已提交
1435
			$(POLKIT_LIBS) \
1436 1437 1438 1439 1440
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_server_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)

1441 1442 1443 1444 1445
libvirt_net_rpc_client_la_SOURCES = \
	rpc/virnetclientprogram.h rpc/virnetclientprogram.c \
	rpc/virnetclientstream.h rpc/virnetclientstream.c \
	rpc/virnetclient.h rpc/virnetclient.c
libvirt_net_rpc_client_la_CFLAGS = \
E
Eric Blake 已提交
1446 1447
			$(AM_CFLAGS) \
			$(XDR_CFLAGS)
1448 1449 1450 1451 1452 1453
libvirt_net_rpc_client_la_LDFLAGS = \
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_client_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)
1454

1455 1456
libexec_PROGRAMS =

1457
if WITH_LIBVIRTD
1458 1459 1460 1461 1462 1463 1464 1465
libexec_PROGRAMS += libvirt_iohelper
libvirt_iohelper_SOURCES = $(UTIL_IO_HELPER_SOURCES)
libvirt_iohelper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
libvirt_iohelper_LDADD =		\
		libvirt_util.la		\
		../gnulib/lib/libgnu.la

libvirt_iohelper_CFLAGS = $(AM_CFLAGS)
1466
endif
1467

1468
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
1469
if WITH_LIBVIRTD
1470
libexec_PROGRAMS += libvirt_parthelper
1471

1472
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
1473
libvirt_parthelper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
1474 1475 1476 1477 1478
libvirt_parthelper_LDADD =		\
		$(LIBPARTED_LIBS)	\
		libvirt_util.la		\
		../gnulib/lib/libgnu.la

1479
libvirt_parthelper_CFLAGS = $(LIBPARTED_CFLAGS) $(AM_CFLAGS)
R
Richard W.M. Jones 已提交
1480
endif
1481
endif
1482 1483
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

1484

1485 1486 1487 1488 1489 1490
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

libvirt_lxc_SOURCES =						\
		$(LXC_CONTROLLER_SOURCES)			\
1491
		$(UTIL_SOURCES)					\
1492 1493
		$(NODE_INFO_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
1494
		$(NETDEV_CONF_SOURCES)				\
1495
		$(DOMAIN_CONF_SOURCES)				\
1496
		$(SECRET_CONF_SOURCES)				\
1497 1498
		$(CPU_CONF_SOURCES)				\
		$(NWFILTER_PARAM_CONF_SOURCES)
1499
libvirt_lxc_LDFLAGS = $(WARN_CFLAGS) $(AM_LDFLAGS)
1500
libvirt_lxc_LDADD = $(CAPNG_LIBS) $(YAJL_LIBS) \
E
Eric Blake 已提交
1501
		$(LIBXML_LIBS) $(NUMACTL_LIBS) $(THREAD_LIBS) \
1502 1503
		$(LIBNL_LIBS) $(AUDIT_LIBS) $(DEVMAPPER_LIBS) \
		../gnulib/lib/libgnu.la
1504 1505 1506
if WITH_DTRACE
libvirt_lxc_LDADD += probes.o
endif
1507 1508 1509 1510
libvirt_lxc_CFLAGS =				\
		$(LIBPARTED_CFLAGS)		\
		$(NUMACTL_CFLAGS)		\
		$(CAPNG_CFLAGS)			\
1511
		$(YAJL_CFLAGS)			\
1512
		$(AUDIT_CFLAGS)			\
1513 1514
		-I@top_srcdir@/src/conf		\
		$(AM_CFLAGS)
1515 1516 1517 1518
if HAVE_LIBBLKID
libvirt_lxc_CFLAGS += $(BLKID_CFLAGS)
libvirt_lxc_LDADD += $(BLKID_LIBS)
endif
1519 1520 1521 1522
endif
endif
EXTRA_DIST += $(LXC_CONTROLLER_SOURCES)

J
Jamie Strandboge 已提交
1523 1524 1525 1526 1527 1528
if WITH_SECDRIVER_APPARMOR
if WITH_LIBVIRTD
libexec_PROGRAMS += virt-aa-helper

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1529
virt_aa_helper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
J
Jamie Strandboge 已提交
1530
virt_aa_helper_LDADD =						\
1531
		$(LIBXML_LIBS)					\
C
Chris Lalancette 已提交
1532 1533 1534
		libvirt_conf.la					\
		libvirt_util.la					\
		../gnulib/lib/libgnu.la
J
Jamie Strandboge 已提交
1535 1536
virt_aa_helper_CFLAGS =						\
		-I@top_srcdir@/src/conf				\
1537 1538
		-I@top_srcdir@/src/security			\
		$(AM_CFLAGS)
J
Jamie Strandboge 已提交
1539 1540 1541 1542
endif
endif
EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1543
install-data-local:
1544 1545
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/images"
1546
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems"
1547
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/boot"
1548 1549 1550
if HAVE_SANLOCK
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock"
endif
1551 1552 1553
if WITH_QEMU
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/qemu"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/qemu"
1554
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu"
1555
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/qemu"
1556 1557 1558 1559 1560
endif
if WITH_LXC
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/lxc"
endif
J
Jim Fehlig 已提交
1561 1562 1563
if WITH_LIBXL
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/libxl"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/libxl"
J
Jim Fehlig 已提交
1564
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/libxl"
J
Jim Fehlig 已提交
1565
endif
1566 1567 1568 1569 1570 1571
if WITH_UML
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/uml"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/uml"
endif
if WITH_NETWORK
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/network"
1572
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/dnsmasq"
1573
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/network"
1574 1575 1576 1577
	$(MKDIR_P) "$(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart"
	$(INSTALL_DATA) $(srcdir)/network/default.xml \
	  $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
	test -z "$(UUID)" || \
E
Eric Blake 已提交
1578 1579 1580 1581 1582 1583
	  { sed -e "s,</name>,</name>\n  <uuid>$(UUID)</uuid>," \
	      $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml > \
	      $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml.t && \
	    cp $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml.t \
	      $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml && \
	    rm $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml.t; }
1584
	test -e $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml || \
E
Eric Blake 已提交
1585
	   ln -s ../default.xml \
1586 1587 1588 1589 1590 1591
	    $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
endif

uninstall-local::
	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt" ||:
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/images" ||:
1592
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems" ||:
1593
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/boot" ||:
1594 1595 1596
if HAVE_SANLOCK
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock" ||:
endif
1597 1598 1599 1600 1601
if WITH_QEMU
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/qemu" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/qemu" ||:
	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu" ||:
	rmdir "$(DESTDIR)$(localstatedir)/log/libvirt/qemu" ||:
1602
endif
1603 1604 1605 1606
if WITH_LXC
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/lxc" ||:
endif
J
Jim Fehlig 已提交
1607 1608 1609
if WITH_LIBXL
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/libxl" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1610
	rmdir "$(DESTDIR)$(localstatedir)/log/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1611
endif
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
if WITH_UML
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/uml" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/uml" ||:
endif
if WITH_NETWORK
	rm -f $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
	rm -f $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
	rmdir "$(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart" || :
	rmdir "$(DESTDIR)$(sysconfdir)/libvirt/qemu/networks" || :
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/network" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/network" ||:
endif
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt" ||:
R
Richard W.M. Jones 已提交
1625

1626 1627 1628
CLEANFILES += *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda *.i *.s
DISTCLEANFILES += $(GENERATED_SYM_FILES)
MAINTAINERCLEANFILES += $(REMOTE_DRIVER_GENERATED) $(VIR_NET_RPC_GENERATED) $(ESX_DRIVER_GENERATED)