Makefile.am 51.3 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/virnodesuspend.c util/virnodesuspend.h	\
89
		util/virpidfile.c util/virpidfile.h		\
90
		util/xml.c util/xml.h				\
L
Lai Jiangshan 已提交
91 92
		util/virterror.c util/virterror_internal.h	\
		util/virkeycode.c util/virkeycode.h		\
93 94
		util/virkeymaps.h				\
		util/virnetdev.h util/virnetdev.c		\
95
		util/virnetdevbandwidth.h util/virnetdevbandwidth.c \
96
		util/virnetdevbridge.h util/virnetdevbridge.c	\
97
		util/virnetdevmacvlan.c util/virnetdevmacvlan.h	\
98
		util/virnetdevtap.h util/virnetdevtap.c		\
99
		util/virnetdevveth.h util/virnetdevveth.c \
100
		util/virnetdevvportprofile.h util/virnetdevvportprofile.c \
101 102
		util/virsocketaddr.h util/virsocketaddr.c \
		util/virtime.h util/virtime.c
L
Lai Jiangshan 已提交
103 104 105 106 107 108

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
109
	$(AM_V_GEN)$(PYTHON) $(srcdir)/util/virkeycode-mapgen.py <$(srcdir)/util/keymaps.csv >$@
L
Lai Jiangshan 已提交
110 111

$(srcdir)/util/virkeycode.c: $(srcdir)/util/virkeycode.h $(srcdir)/util/virkeymaps.h
112 113

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

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

129 130 131
LOCK_DRIVER_SANLOCK_SOURCES = \
		locking/lock_driver_sanlock.c

132

133 134 135 136
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

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

DOMAIN_EVENT_SOURCES =						\
		conf/domain_event.c conf/domain_event.h
147 148

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

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

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

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

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

169
# Secret driver generic impl APIs
170 171 172 173 174 175 176 177 178 179
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

180 181 182
CPU_CONF_SOURCES =						\
		conf/cpu_conf.c conf/cpu_conf.h

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

196
# The remote RPC driver, covering domains, storage, networks, etc
197
REMOTE_DRIVER_GENERATED = \
E
Eric Blake 已提交
198 199 200 201 202 203 204
		$(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 已提交
205 206
# The remote RPC driver needs probes.h
if WITH_DTRACE
J
Jiri Denemark 已提交
207
REMOTE_DRIVER_GENERATED += probes.h
W
Wen Congyang 已提交
208 209
endif

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

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

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

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

229
EXTRA_DIST +=  $(REMOTE_DRIVER_PROTOCOL) \
230
		$(REMOTE_DRIVER_GENERATED)
231

232 233 234 235 236 237 238 239 240 241
# 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
242 243 244 245

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

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

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

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

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

LXC_DRIVER_SOURCES =						\
327 328
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
329
		lxc/lxc_driver.c lxc/lxc_driver.h
330

331
LXC_CONTROLLER_SOURCES =					\
332 333
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
334
		lxc/lxc_controller.c
335

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

339 340 341
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

342
OPENVZ_DRIVER_SOURCES =						\
343 344
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
345

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

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

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

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

384 385
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
386
		xenapi/xenapi_driver_private.h					\
387 388
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

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

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

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

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

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

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

456
NETWORK_DRIVER_SOURCES =					\
457
		network/bridge_driver.h network/bridge_driver.c
458

459
INTERFACE_DRIVER_SOURCES =					\
460
		interface/netcf_driver.h interface/netcf_driver.c
461

462
SECRET_DRIVER_SOURCES =						\
463
		secret/secret_driver.h secret/secret_driver.c
464

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

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

473
STORAGE_DRIVER_LVM_SOURCES =					\
474 475
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
476 477

STORAGE_DRIVER_ISCSI_SOURCES =					\
478
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
479

480
STORAGE_DRIVER_SCSI_SOURCES =					\
481
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
482

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

486
STORAGE_DRIVER_DISK_SOURCES =					\
487
		storage/storage_backend_disk.h storage/storage_backend_disk.c
488 489

STORAGE_HELPER_DISK_SOURCES =					\
490
		storage/parthelper.c
491

492 493 494
UTIL_IO_HELPER_SOURCES =					\
		util/iohelper.c

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

505

506
# Security framework and drivers for various models
507
SECURITY_DRIVER_SOURCES =					\
508 509 510 511 512
		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
513

514
SECURITY_DRIVER_SELINUX_SOURCES =				\
515
		security/security_selinux.h security/security_selinux.c
516

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

520

521
NODE_DEVICE_DRIVER_SOURCES =					\
522 523 524
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
525 526

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
527
		node_device/node_device_hal.c			\
528
		node_device/node_device_hal.h
529

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

J
Jiri Denemark 已提交
534 535 536 537 538
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
539

540 541 542
VMX_SOURCES =							\
		vmx/vmx.c vmx/vmx.h

543 544
XENXS_SOURCES =							\
		xenxs/xenxs_private.h				\
545 546
		xenxs/xen_sxpr.c xenxs/xen_sxpr.h		\
		xenxs/xen_xm.c xenxs/xen_xm.h
547

J
Jiri Denemark 已提交
548 549
pkgdata_DATA =	cpu/cpu_map.xml

E
Eric Blake 已提交
550
EXTRA_DIST +=	$(pkgdata_DATA)
551

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

558
noinst_LTLIBRARIES = libvirt_util.la
559 560
libvirt_la_LIBADD = $(libvirt_la_BUILT_LIBADD)
libvirt_la_BUILT_LIBADD = libvirt_util.la
561 562
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
563
libvirt_util_la_CFLAGS = $(CAPNG_CFLAGS) $(YAJL_CFLAGS) $(LIBNL_CFLAGS) \
564
		$(AM_CFLAGS) $(AUDIT_CFLAGS) $(DEVMAPPER_CFLAGS)
565
libvirt_util_la_LIBADD = $(CAPNG_LIBS) $(YAJL_LIBS) $(LIBNL_LIBS) \
566 567
		$(THREAD_LIBS) $(AUDIT_LIBS) $(DEVMAPPER_LIBS) \
		$(RT_LIBS)
568

569 570

noinst_LTLIBRARIES += libvirt_conf.la
571
libvirt_la_BUILT_LIBADD += libvirt_conf.la
572
libvirt_conf_la_SOURCES = $(CONF_SOURCES)
573 574
libvirt_conf_la_CFLAGS = $(AM_CFLAGS)
libvirt_conf_la_LDFLAGS = $(AM_LDFLAGS)
575

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

582 583 584 585 586 587 588 589
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

590
if WITH_XENXS
591 592 593 594 595 596 597
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

598

599
noinst_LTLIBRARIES += libvirt_driver.la
600
libvirt_la_BUILT_LIBADD += libvirt_driver.la
601
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
602

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

607
USED_SYM_FILES = libvirt_private.syms
608

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

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

C
Chris Lalancette 已提交
648

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

651 652
endif WITH_REMOTE

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

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

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

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

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

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

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

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

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

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

A
Amy Griffis 已提交
810
conf_DATA += qemu/qemu.conf
811

812 813
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
814

815
endif
816 817
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug \
		qemu/test_libvirtd_qemu.aug qemu/THREADS.txt
818

819 820

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

conf_DATA += lxc/lxc.conf

845 846 847
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

848
endif
849
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
850

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

D
Daniel Veillard 已提交
870

871
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
872

873 874 875
$(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 已提交
876

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

M
Matthias Bolte 已提交
896

897 898 899 900 901 902
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 已提交
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
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

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



941

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

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

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

1009
if WITH_STORAGE_LVM
1010
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
1011 1012
endif

1013
if WITH_STORAGE_ISCSI
1014
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
1015 1016
endif

1017 1018 1019 1020
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
1021 1022 1023
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
1024
libvirt_driver_storage_la_LIBADD += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
1025 1026
endif

1027
if WITH_STORAGE_DISK
1028
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
1029
endif
1030

1031 1032 1033 1034 1035 1036 1037
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
1038
#libvirt_la_BUILT_LIBADD += libvirt_driver_nodedev.la
1039 1040 1041
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

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

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

if WITH_DRIVER_MODULES
1061
libvirt_driver_nodedev_la_LIBADD += ../gnulib/lib/libgnu.la
1062 1063 1064 1065 1066
libvirt_driver_nodedev_la_LDFLAGS += -module -avoid-version
endif
endif


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


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

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

1141 1142 1143 1144
check-local: augeas-check

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

1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
#
# 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.
#

1181
if WITH_DRIVER_MODULES
1182
USED_SYM_FILES += libvirt_driver_modules.syms
1183
endif
1184

1185
if WITH_LINUX
1186
USED_SYM_FILES += libvirt_linux.syms
1187
endif
1188

1189 1190
if HAVE_DBUS
USED_SYM_FILES += libvirt_dbus.syms
1191
endif
1192

1193 1194 1195 1196
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

1197 1198 1199 1200
if WITH_NWFILTER
USED_SYM_FILES += libvirt_nwfilter.syms
endif

1201 1202 1203 1204
if WITH_VMX
USED_SYM_FILES += libvirt_vmx.syms
endif

1205 1206 1207 1208
if WITH_XENXS
USED_SYM_FILES += libvirt_xenxs.syms
endif

1209 1210 1211 1212
if WITH_NETWORK
USED_SYM_FILES += libvirt_network.syms
endif

E
Eric Blake 已提交
1213 1214 1215 1216
if HAVE_SASL
USED_SYM_FILES += libvirt_sasl.syms
endif

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

1230 1231 1232
GENERATED_SYM_FILES = libvirt.syms libvirt.def libvirt_qemu.def

BUILT_SOURCES += $(GENERATED_SYM_FILES)
1233

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

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

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

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

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

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
1306
	$(AM_V_GEN)perl -w $(srcdir)/dtrace2systemtap.pl $(bindir) $(sbindir) $(libdir) $< > $@
1307 1308 1309 1310 1311 1312 1313

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

EXTRA_DIST += probes.d


1314 1315 1316
# 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.
1317
noinst_LTLIBRARIES += libvirt_test.la
1318

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

# 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)
1328 1329
libvirt_test_la_LDFLAGS = $(test_LDFLAGS) $(AM_LDFLAGS)
libvirt_test_la_CFLAGS = $(AM_CFLAGS)
1330

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

1340 1341 1342 1343 1344 1345 1346
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
1347
sanlock_la_LIBADD = -lsanlock_client \
1348 1349 1350 1351 1352 1353
		../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
1354
	$(AM_V_GEN)$(MKDIR_P) locking ; \
1355 1356 1357 1358 1359
	cp $< $@

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

1369 1370 1371 1372
noinst_LTLIBRARIES += \
	libvirt-net-rpc.la \
	libvirt-net-rpc-server.la \
	libvirt-net-rpc-client.la
1373

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

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

1388
BUILT_SOURCES += $(VIR_NET_RPC_GENERATED)
1389

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

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

1444 1445 1446 1447 1448
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 已提交
1449 1450
			$(AM_CFLAGS) \
			$(XDR_CFLAGS)
1451 1452 1453 1454 1455 1456
libvirt_net_rpc_client_la_LDFLAGS = \
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_client_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)
1457

1458 1459
libexec_PROGRAMS =

1460
if WITH_LIBVIRTD
1461 1462 1463 1464 1465 1466 1467 1468
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)
1469
endif
1470

1471
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
1472
if WITH_LIBVIRTD
1473
libexec_PROGRAMS += libvirt_parthelper
1474

1475
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
1476
libvirt_parthelper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
1477 1478 1479 1480 1481
libvirt_parthelper_LDADD =		\
		$(LIBPARTED_LIBS)	\
		libvirt_util.la		\
		../gnulib/lib/libgnu.la

1482
libvirt_parthelper_CFLAGS = $(LIBPARTED_CFLAGS) $(AM_CFLAGS)
R
Richard W.M. Jones 已提交
1483
endif
1484
endif
1485 1486
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

1487

1488 1489 1490 1491 1492 1493
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

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

J
Jamie Strandboge 已提交
1527 1528 1529 1530 1531 1532
if WITH_SECDRIVER_APPARMOR
if WITH_LIBVIRTD
libexec_PROGRAMS += virt-aa-helper

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

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

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

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

1630 1631 1632
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)