Makefile.am 51.1 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 250
r2 = /\* <[[:xdigit:]]+> \S+:\d+ \*/

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

PROTOCOL_STRUCTS = \
	$(srcdir)/remote_protocol-structs \
	$(srcdir)/qemu_protocol-structs \
J
Jiri Denemark 已提交
288 289
	$(srcdir)/virnetprotocol-structs \
	$(srcdir)/virkeepaliveprotocol-structs
290 291 292 293 294 295 296
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 已提交
297
$(srcdir)/virkeepaliveprotocol-structs: libvirt_net_rpc_la-virkeepaliveprotocol.lo
298
else !WITH_REMOTE
299
# These generated files must live in git, because they cannot be re-generated
300
# when configured --without-remote.
301
$(PROTOCOL_STRUCTS):
302
endif
303 304
EXTRA_DIST += $(PROTOCOL_STRUCTS)
check-local: $(PROTOCOL_STRUCTS)
305

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

# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
312 313 314 315 316 317
		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
318
if WITH_XEN_INOTIFY
319
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
320
endif
321 322

LXC_DRIVER_SOURCES =						\
323 324
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
325
		lxc/lxc_driver.c lxc/lxc_driver.h
326

327
LXC_CONTROLLER_SOURCES =					\
328 329
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
330
		lxc/lxc_controller.c
331

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

335 336 337
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

338
OPENVZ_DRIVER_SOURCES =						\
339 340
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
341

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

346
VBOX_DRIVER_SOURCES =						\
E
Eric Blake 已提交
347 348 349 350 351 352
	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			\
353 354
	vbox/vbox_V4_0.c vbox/vbox_CAPI_v4_0.h			\
	vbox/vbox_V4_1.c vbox/vbox_CAPI_v4_1.h
355

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

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

380 381
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
382
		xenapi/xenapi_driver_private.h					\
383 384
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

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

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

393
ESX_DRIVER_SOURCES =						\
394
		esx/esx_private.h						\
395
		esx/esx_driver.c esx/esx_driver.h		\
396 397 398 399 400
		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 已提交
401
		esx/esx_nwfilter_driver.c esx/esx_nwfilter_driver.h		\
402 403
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
404
		esx/esx_vi_methods.c esx/esx_vi_methods.h	\
405
		esx/esx_vi_types.c esx/esx_vi_types.h
406

407
ESX_DRIVER_GENERATED =							\
408 409
		esx/esx_vi_methods.generated.c				\
		esx/esx_vi_methods.generated.h				\
410
		esx/esx_vi_methods.generated.macro			\
411 412 413 414 415
		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			\
416 417 418
		esx/esx_vi_types.generated.typefromstring		\
		esx/esx_vi.generated.c					\
		esx/esx_vi.generated.h
419 420 421 422 423 424 425

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

M
Matthias Bolte 已提交
426 427 428 429 430 431 432 433
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		\
434
		hyperv/hyperv_nwfilter_driver.c hyperv/hyperv_nwfilter_driver.h		\
435
		hyperv/hyperv_util.c hyperv/hyperv_util.h				\
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
		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)

452
NETWORK_DRIVER_SOURCES =					\
453
		network/bridge_driver.h network/bridge_driver.c
454

455
INTERFACE_DRIVER_SOURCES =					\
456
		interface/netcf_driver.h interface/netcf_driver.c
457

458
SECRET_DRIVER_SOURCES =						\
459
		secret/secret_driver.h secret/secret_driver.c
460

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

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

469
STORAGE_DRIVER_LVM_SOURCES =					\
470 471
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
472 473

STORAGE_DRIVER_ISCSI_SOURCES =					\
474
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
475

476
STORAGE_DRIVER_SCSI_SOURCES =					\
477
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
478

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

482
STORAGE_DRIVER_DISK_SOURCES =					\
483
		storage/storage_backend_disk.h storage/storage_backend_disk.c
484 485

STORAGE_HELPER_DISK_SOURCES =					\
486
		storage/parthelper.c
487

488 489 490
UTIL_IO_HELPER_SOURCES =					\
		util/iohelper.c

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

501

502
# Security framework and drivers for various models
503
SECURITY_DRIVER_SOURCES =					\
504 505 506 507 508
		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
509

510
SECURITY_DRIVER_SELINUX_SOURCES =				\
511
		security/security_selinux.h security/security_selinux.c
512

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

516

517
NODE_DEVICE_DRIVER_SOURCES =					\
518 519 520
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
521 522

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
523
		node_device/node_device_hal.c			\
524
		node_device/node_device_hal.h
525

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

J
Jiri Denemark 已提交
530 531 532 533 534
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
535

536 537 538
VMX_SOURCES =							\
		vmx/vmx.c vmx/vmx.h

539 540
XENXS_SOURCES =							\
		xenxs/xenxs_private.h				\
541 542
		xenxs/xen_sxpr.c xenxs/xen_sxpr.h		\
		xenxs/xen_xm.c xenxs/xen_xm.h
543

J
Jiri Denemark 已提交
544 545
pkgdata_DATA =	cpu/cpu_map.xml

E
Eric Blake 已提交
546
EXTRA_DIST +=	$(pkgdata_DATA)
547

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

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

564 565

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

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

577 578 579 580 581 582 583 584
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

585
if WITH_XENXS
586 587 588 589 590 591 592
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

593

594
noinst_LTLIBRARIES += libvirt_driver.la
595
libvirt_la_BUILT_LIBADD += libvirt_driver.la
596
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
597

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

602
USED_SYM_FILES = libvirt_private.syms
603

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

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

C
Chris Lalancette 已提交
643

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

646 647
endif WITH_REMOTE

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

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

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

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

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

710 711 712 713 714 715 716 717
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 已提交
718
		-I@top_srcdir@/src/conf -I@top_srcdir@/src/vmx $(AM_CFLAGS)
719
if WITH_DRIVER_MODULES
720
libvirt_driver_vmware_la_LIBADD = ../gnulib/lib/libgnu.la
721 722 723 724 725
libvirt_driver_vmware_la_LDFLAGS = -module -avoid-version
endif
libvirt_driver_vmware_la_SOURCES = $(VMWARE_DRIVER_SOURCES)
endif

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

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

J
Jim Fehlig 已提交
761 762 763 764 765 766 767 768
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
769 770 771 772
libvirt_driver_libxl_la_CFLAGS = $(LIBXL_CFLAGS)		\
		-I@top_srcdir@/src/conf				\
		-I@top_srcdir@/src/xenxs			\
		$(AM_CFLAGS)
J
Jim Fehlig 已提交
773
libvirt_driver_libxl_la_LDFLAGS = $(AM_LDFLAGS)
774
libvirt_driver_libxl_la_LIBADD = $(LIBXL_LIBS) libvirt_xenxs.la
J
Jim Fehlig 已提交
775 776 777 778 779 780 781
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

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

A
Amy Griffis 已提交
805
conf_DATA += qemu/qemu.conf
806

807 808
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
809

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

814 815

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

conf_DATA += lxc/lxc.conf

840 841 842
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

843
endif
844
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
845

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

D
Daniel Veillard 已提交
865

866
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
867

868 869 870
$(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 已提交
871

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

M
Matthias Bolte 已提交
891

892 893 894 895 896 897
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 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
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

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



936

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

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

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

1004
if WITH_STORAGE_LVM
1005
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
1006 1007
endif

1008
if WITH_STORAGE_ISCSI
1009
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
1010 1011
endif

1012 1013 1014 1015
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

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

1022
if WITH_STORAGE_DISK
1023
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
1024
endif
1025

1026 1027 1028 1029 1030 1031 1032
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
1033
#libvirt_la_BUILT_LIBADD += libvirt_driver_nodedev.la
1034 1035 1036
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

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

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

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


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


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

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

1136 1137 1138 1139
check-local: augeas-check

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

1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
#
# 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.
#

1176
if WITH_DRIVER_MODULES
1177
USED_SYM_FILES += libvirt_driver_modules.syms
1178
endif
1179

1180
if WITH_LINUX
1181
USED_SYM_FILES += libvirt_linux.syms
1182
endif
1183

1184 1185
if HAVE_DBUS
USED_SYM_FILES += libvirt_dbus.syms
1186
endif
1187

1188 1189 1190 1191
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

1192 1193 1194 1195
if WITH_NWFILTER
USED_SYM_FILES += libvirt_nwfilter.syms
endif

1196 1197 1198 1199
if WITH_VMX
USED_SYM_FILES += libvirt_vmx.syms
endif

1200 1201 1202 1203
if WITH_XENXS
USED_SYM_FILES += libvirt_xenxs.syms
endif

1204 1205 1206 1207
if WITH_NETWORK
USED_SYM_FILES += libvirt_network.syms
endif

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

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

1225 1226 1227
GENERATED_SYM_FILES = libvirt.syms libvirt.def libvirt_qemu.def

BUILT_SOURCES += $(GENERATED_SYM_FILES)
1228

1229 1230
libvirt.syms: libvirt_public.syms $(USED_SYM_FILES) \
		$(top_builddir)/config.status
1231 1232 1233 1234 1235 1236
	$(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 && \
1237
	for file in $(USED_SYM_FILES); do \
1238
	    cat $(srcdir)/$$file >>$@-tmp; \
1239 1240 1241
	done && \
	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp && \
	chmod a-w $@-tmp && \
1242
	mv $@-tmp libvirt.syms
1243

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

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

1258 1259
# Empty source list - it merely links a bunch of convenience libs together
libvirt_la_SOURCES =
1260
libvirt_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE) \
E
Eric Blake 已提交
1261
		     -version-info $(LIBVIRT_VERSION_INFO) \
1262
		    $(LIBVIRT_NODELETE) $(AM_LDFLAGS) \
1263
		    $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
1264
libvirt_la_BUILT_LIBADD += ../gnulib/lib/libgnu.la
1265
libvirt_la_LIBADD += $(LIBXML_LIBS) \
1266
		    $(DRIVER_MODULE_LIBS) \
1267
		    $(CYGWIN_EXTRA_LIBADD)
1268
libvirt_la_CFLAGS = -DIN_LIBVIRT $(AM_CFLAGS)
1269 1270 1271 1272 1273 1274
# 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)
1275

1276
if WITH_DTRACE
1277 1278
libvirt_la_BUILT_LIBADD += probes.o
libvirt_la_DEPENDENCIES += probes.o
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
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 已提交
1292 1293 1294 1295
RPC_PROBE_FILES = $(srcdir)/rpc/virnetprotocol.x \
		  $(srcdir)/rpc/virkeepaliveprotocol.x \
		  $(srcdir)/remote/remote_protocol.x \
		  $(srcdir)/remote/qemu_protocol.x
1296 1297 1298 1299 1300

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
1301
	$(AM_V_GEN)perl -w $(srcdir)/dtrace2systemtap.pl $(bindir) $(sbindir) $(libdir) $< > $@
1302 1303 1304 1305 1306 1307 1308

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

EXTRA_DIST += probes.d


1309 1310 1311
# 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.
1312
noinst_LTLIBRARIES += libvirt_test.la
1313

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

# 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)
1323 1324
libvirt_test_la_LDFLAGS = $(test_LDFLAGS) $(AM_LDFLAGS)
libvirt_test_la_CFLAGS = $(AM_CFLAGS)
1325

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

1335 1336 1337 1338 1339 1340 1341
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
1342
sanlock_la_LIBADD = -lsanlock_client \
1343 1344 1345 1346 1347 1348
		../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
1349
	$(AM_V_GEN)$(MKDIR_P) locking ; \
1350 1351 1352 1353 1354
	cp $< $@

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

1364 1365 1366 1367
noinst_LTLIBRARIES += \
	libvirt-net-rpc.la \
	libvirt-net-rpc-server.la \
	libvirt-net-rpc-client.la
1368

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

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

1383
BUILT_SOURCES += $(VIR_NET_RPC_GENERATED)
1384

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

1413 1414 1415 1416 1417
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
1418 1419 1420 1421 1422 1423 1424
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
1425
libvirt_net_rpc_server_la_CFLAGS = \
1426
			$(AVAHI_CFLAGS) \
E
Eric Blake 已提交
1427
			$(XDR_CFLAGS) \
J
Jim Fehlig 已提交
1428 1429
			$(AM_CFLAGS) \
			$(POLKIT_CFLAGS)
1430 1431
libvirt_net_rpc_server_la_LDFLAGS = \
			$(AM_LDFLAGS) \
1432
			$(AVAHI_LIBS) \
J
Jim Fehlig 已提交
1433
			$(POLKIT_LIBS) \
1434 1435 1436 1437 1438
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_server_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)

1439 1440 1441 1442 1443
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 已提交
1444 1445
			$(AM_CFLAGS) \
			$(XDR_CFLAGS)
1446 1447 1448 1449 1450 1451
libvirt_net_rpc_client_la_LDFLAGS = \
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_client_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)
1452

1453 1454
libexec_PROGRAMS =

1455
if WITH_LIBVIRTD
1456 1457 1458 1459 1460 1461 1462 1463
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)
1464
endif
1465

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

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

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

1482

1483 1484 1485 1486 1487 1488
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

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

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

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

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

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

uninstall-local::
	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt" ||:
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/images" ||:
1590
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems" ||:
1591
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/boot" ||:
1592 1593 1594
if HAVE_SANLOCK
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock" ||:
endif
1595 1596 1597 1598 1599
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" ||:
1600
endif
1601 1602 1603 1604
if WITH_LXC
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/lxc" ||:
endif
J
Jim Fehlig 已提交
1605 1606 1607
if WITH_LIBXL
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/libxl" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1608
	rmdir "$(DESTDIR)$(localstatedir)/log/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1609
endif
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
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 已提交
1623

1624 1625 1626
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)