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

3
## Copyright (C) 2005-2012 Red Hat, Inc.
4 5
## 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.
9 10
INCLUDES =	-I../gnulib/lib					\
		-I$(top_srcdir)/gnulib/lib			\
11
		-I../include					\
12 13
		-I$(top_srcdir)/include				\
		-I$(top_srcdir)/src/util			\
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/bitmap.c util/bitmap.h			\
56
		util/buf.c util/buf.h				\
57
		util/command.c util/command.h			\
58 59 60
		util/conf.c util/conf.h				\
		util/cgroup.c util/cgroup.h			\
		util/event.c util/event.h			\
61
		util/event_poll.c util/event_poll.h		\
D
Daniel Veillard 已提交
62
		util/hooks.c util/hooks.h			\
63
		util/iptables.c util/iptables.h			\
G
Gerhard Stenzel 已提交
64
		util/ebtables.c util/ebtables.h			\
65
		util/dnsmasq.c util/dnsmasq.h                   \
66
		util/json.c util/json.h				\
67 68 69
		util/logging.c util/logging.h			\
		util/memory.c util/memory.h			\
		util/pci.c util/pci.h				\
70
		util/processinfo.c util/processinfo.h		\
71
		util/hostusb.c util/hostusb.h			\
M
Markus Groß 已提交
72
		util/sexpr.c util/sexpr.h			\
73
		util/stats_linux.c util/stats_linux.h		\
74
		util/storage_file.c util/storage_file.h		\
75
		util/sysinfo.c util/sysinfo.h			\
76 77 78
		util/threads.c util/threads.h			\
		util/threads-pthread.h				\
		util/threads-win32.h				\
H
Hu Tao 已提交
79
		util/threadpool.c util/threadpool.h		\
80 81
		util/uuid.c util/uuid.h				\
		util/util.c util/util.h				\
82
		util/viraudit.c util/viraudit.h			\
83
		util/virauth.c util/virauth.h			\
84
		util/virauthconfig.c util/virauthconfig.h	\
E
Eric Blake 已提交
85
		util/virfile.c util/virfile.h			\
86
		util/virnodesuspend.c util/virnodesuspend.h	\
87
		util/virpidfile.c util/virpidfile.h		\
88
		util/virtypedparam.c util/virtypedparam.h	\
89
		util/xml.c util/xml.h				\
L
Lai Jiangshan 已提交
90
		util/virterror.c util/virterror_internal.h	\
91
		util/virdbus.c util/virdbus.h			\
92
		util/virhash.c util/virhash.h			\
93
		util/virhashcode.c util/virhashcode.h           \
L
Lai Jiangshan 已提交
94
		util/virkeycode.c util/virkeycode.h		\
95
		util/virkeyfile.c util/virkeyfile.h		\
96
		util/virkeymaps.h				\
97
		util/virmacaddr.h util/virmacaddr.c		\
98
		util/virnetdev.h util/virnetdev.c		\
99
		util/virnetdevbandwidth.h util/virnetdevbandwidth.c \
100
		util/virnetdevbridge.h util/virnetdevbridge.c	\
101
		util/virnetdevmacvlan.c util/virnetdevmacvlan.h	\
A
Ansis Atteka 已提交
102
		util/virnetdevopenvswitch.h util/virnetdevopenvswitch.c \
103
		util/virnetdevtap.h util/virnetdevtap.c		\
104
		util/virnetdevveth.h util/virnetdevveth.c \
105
		util/virnetdevvportprofile.h util/virnetdevvportprofile.c \
106
		util/virnetlink.c util/virnetlink.h		\
107
		util/virrandom.h util/virrandom.c		\
108
		util/virsocketaddr.h util/virsocketaddr.c \
M
Martin Kletzander 已提交
109 110
		util/virtime.h util/virtime.c \
		util/viruri.h util/viruri.c
L
Lai Jiangshan 已提交
111 112 113 114 115 116

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

$(srcdir)/util/virkeycode.c: $(srcdir)/util/virkeycode.h $(srcdir)/util/virkeymaps.h
120 121

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

123
# Internal generic driver infrastructure
124
NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c
125
DRIVER_SOURCES =						\
126
		driver.c driver.h				\
127 128
		internal.h					\
		datatypes.c datatypes.h				\
129
		fdstream.c fdstream.h                 \
130
		$(NODE_INFO_SOURCES)				\
131
		libvirt.c libvirt_internal.h			\
132 133
		locking/lock_manager.c locking/lock_manager.h   \
		locking/lock_driver.h 				\
134 135
		locking/lock_driver_nop.h locking/lock_driver_nop.c \
		locking/domain_lock.h locking/domain_lock.c
136

137 138 139
LOCK_DRIVER_SANLOCK_SOURCES = \
		locking/lock_driver_sanlock.c

140

141 142 143 144
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

145
# XML configuration format handling sources
146 147
# Domain driver generic impl APIs
DOMAIN_CONF_SOURCES =						\
148
		conf/capabilities.c conf/capabilities.h		\
149
		conf/domain_conf.c conf/domain_conf.h		\
150
		conf/domain_audit.c conf/domain_audit.h		\
151
		conf/domain_nwfilter.c conf/domain_nwfilter.h
152 153 154

DOMAIN_EVENT_SOURCES =						\
		conf/domain_event.c conf/domain_event.h
155 156

# Network driver generic impl APIs
157
NETWORK_CONF_SOURCES =						\
158
		conf/network_conf.c conf/network_conf.h
159

160 161
# Network filter driver generic impl APIs
NWFILTER_PARAM_CONF_SOURCES =					\
162 163
		conf/nwfilter_params.c conf/nwfilter_params.h	\
		conf/nwfilter_conf.h
164 165 166 167 168

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

169
# Storage driver generic impl APIs
170 171
STORAGE_CONF_SOURCES =                                         \
		conf/storage_conf.h conf/storage_conf.c
172

173
# Interface driver generic impl APIs
174 175
INTERFACE_CONF_SOURCES =                                       \
		conf/interface_conf.c conf/interface_conf.h
176

177
# Secret driver generic impl APIs
178 179 180 181 182 183 184 185 186 187
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

188 189
CPU_CONF_SOURCES =						\
		conf/cpu_conf.c conf/cpu_conf.h
190 191 192
# Safe console handling helper APIs
CONSOLE_CONF_SOURCES =						\
		conf/virconsole.c conf/virconsole.h
193

194
CONF_SOURCES =							\
195
		$(NETDEV_CONF_SOURCES)				\
196 197 198
		$(DOMAIN_CONF_SOURCES)				\
		$(DOMAIN_EVENT_SOURCES)				\
		$(NETWORK_CONF_SOURCES)				\
199
		$(NWFILTER_CONF_SOURCES)			\
200 201 202 203
		$(NODE_DEVICE_CONF_SOURCES)			\
		$(STORAGE_CONF_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
		$(INTERFACE_CONF_SOURCES)			\
204
		$(SECRET_CONF_SOURCES)				\
205 206
		$(CPU_CONF_SOURCES)				\
		$(CONSOLE_CONF_SOURCES)
207

208
# The remote RPC driver, covering domains, storage, networks, etc
209
REMOTE_DRIVER_GENERATED = \
E
Eric Blake 已提交
210 211 212 213 214 215 216 217 218
		$(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

REMOTE_PROTOCOL = $(srcdir)/remote/remote_protocol.x
QEMU_PROTOCOL = $(srcdir)/remote/qemu_protocol.x
219
REMOTE_DRIVER_PROTOCOL = $(REMOTE_PROTOCOL) $(QEMU_PROTOCOL)
220

221 222 223
$(srcdir)/remote/remote_client_bodies.h: $(srcdir)/rpc/gendispatch.pl \
		$(REMOTE_PROTOCOL)
	$(AM_V_GEN)perl -w $(srcdir)/rpc/gendispatch.pl \
224
	  -k remote $(REMOTE_PROTOCOL) > $@
225

226 227 228
$(srcdir)/remote/qemu_client_bodies.h: $(srcdir)/rpc/gendispatch.pl \
		$(QEMU_PROTOCOL)
	$(AM_V_GEN)perl -w $(srcdir)/rpc/gendispatch.pl \
229 230 231 232 233 234
	  -k qemu $(QEMU_PROTOCOL) > $@

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

236
EXTRA_DIST +=  $(REMOTE_DRIVER_PROTOCOL) \
237
		$(REMOTE_DRIVER_GENERATED)
238

239 240 241 242 243 244 245 246 247 248
# 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
249 250 251 252

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

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

PROTOCOL_STRUCTS = \
	$(srcdir)/remote_protocol-structs \
	$(srcdir)/qemu_protocol-structs \
J
Jiri Denemark 已提交
303 304
	$(srcdir)/virnetprotocol-structs \
	$(srcdir)/virkeepaliveprotocol-structs
305 306 307 308 309 310 311
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 已提交
312
$(srcdir)/virkeepaliveprotocol-structs: libvirt_net_rpc_la-virkeepaliveprotocol.lo
313
	$(PDWTAGS)
314
else !WITH_REMOTE
315
# These generated files must live in git, because they cannot be re-generated
316
# when configured --without-remote.
317
$(PROTOCOL_STRUCTS):
318
endif
319 320
EXTRA_DIST += $(PROTOCOL_STRUCTS)
check-local: $(PROTOCOL_STRUCTS)
321

322 323
# Mock driver, covering domains, storage, networks, etc
TEST_DRIVER_SOURCES =						\
324
		test/test_driver.c test/test_driver.h
325 326 327

# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
328 329 330 331 332 333
		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
334
if WITH_XEN_INOTIFY
335
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
336
endif
337 338

LXC_DRIVER_SOURCES =						\
339 340
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
341
		lxc/lxc_driver.c lxc/lxc_driver.h
342

343
LXC_CONTROLLER_SOURCES =					\
344 345
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
346
		lxc/lxc_controller.c
347

J
Jamie Strandboge 已提交
348 349 350
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES =			\
		security/virt-aa-helper.c

351 352 353
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

354
OPENVZ_DRIVER_SOURCES =						\
355
		openvz/openvz_conf.c openvz/openvz_conf.h	\
356 357
		openvz/openvz_driver.c openvz/openvz_driver.h   \
		openvz/openvz_util.c openvz/openvz_util.h
358

E
Eric Blake 已提交
359
VMWARE_DRIVER_SOURCES =						\
360
		vmware/vmware_driver.c vmware/vmware_driver.h	\
361 362
		vmware/vmware_conf.c vmware/vmware_conf.h

363
VBOX_DRIVER_SOURCES =						\
E
Eric Blake 已提交
364 365 366 367 368 369
	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			\
370 371
	vbox/vbox_V4_0.c vbox/vbox_CAPI_v4_0.h			\
	vbox/vbox_V4_1.c vbox/vbox_CAPI_v4_1.h
372

E
Eric Blake 已提交
373
VBOX_DRIVER_EXTRA_DIST =					\
374 375 376
		vbox/vbox_tmpl.c vbox/README			\
		vbox/vbox_MSCOMGlue.c vbox/vbox_MSCOMGlue.h	\
		vbox/vbox_XPCOMCGlue.c vbox/vbox_XPCOMCGlue.h
377

378
QEMU_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
379
		qemu/qemu_agent.c qemu/qemu_agent.h             \
380
		qemu/qemu_capabilities.c qemu/qemu_capabilities.h\
381
		qemu/qemu_command.c qemu/qemu_command.h		\
382
		qemu/qemu_domain.c qemu/qemu_domain.h		\
383
		qemu/qemu_cgroup.c qemu/qemu_cgroup.h		\
384
		qemu/qemu_hostdev.c qemu/qemu_hostdev.h		\
385
		qemu/qemu_hotplug.c qemu/qemu_hotplug.h		\
386
		qemu/qemu_conf.c qemu/qemu_conf.h		\
387 388
		qemu/qemu_process.c qemu/qemu_process.h		\
		qemu/qemu_migration.c qemu/qemu_migration.h	\
389
		qemu/qemu_monitor.c qemu/qemu_monitor.h		\
390 391
		qemu/qemu_monitor_text.c			\
		qemu/qemu_monitor_text.h			\
D
Daniel P. Berrange 已提交
392 393 394
		qemu/qemu_monitor_json.c			\
		qemu/qemu_monitor_json.h			\
		qemu/qemu_driver.c qemu/qemu_driver.h		\
E
Eric Blake 已提交
395
		qemu/qemu_bridge_filter.c			\
396
		qemu/qemu_bridge_filter.h
R
Richard W.M. Jones 已提交
397

398 399
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
400
		xenapi/xenapi_driver_private.h					\
401 402
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

J
Jim Fehlig 已提交
403 404 405 406
LIBXL_DRIVER_SOURCES =						\
		libxl/libxl_conf.c libxl/libxl_conf.h		\
		libxl/libxl_driver.c libxl/libxl_driver.h

407
UML_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
408 409
		uml/uml_conf.c uml/uml_conf.h			\
		uml/uml_driver.c uml/uml_driver.h
410

411
ESX_DRIVER_SOURCES =						\
412
		esx/esx_private.h						\
413
		esx/esx_driver.c esx/esx_driver.h		\
414 415 416 417 418
		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 已提交
419
		esx/esx_nwfilter_driver.c esx/esx_nwfilter_driver.h		\
420 421
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
422
		esx/esx_vi_methods.c esx/esx_vi_methods.h	\
423
		esx/esx_vi_types.c esx/esx_vi_types.h
424

425
ESX_DRIVER_GENERATED =							\
426 427
		esx/esx_vi_methods.generated.c				\
		esx/esx_vi_methods.generated.h				\
428
		esx/esx_vi_methods.generated.macro			\
429 430 431 432 433
		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			\
434 435 436
		esx/esx_vi_types.generated.typefromstring		\
		esx/esx_vi.generated.c					\
		esx/esx_vi.generated.h
437 438 439 440 441 442 443

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

M
Matthias Bolte 已提交
444 445 446 447 448 449 450 451
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		\
452
		hyperv/hyperv_nwfilter_driver.c hyperv/hyperv_nwfilter_driver.h		\
453
		hyperv/hyperv_util.c hyperv/hyperv_util.h				\
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
		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)

470
NETWORK_DRIVER_SOURCES =					\
471
		network/bridge_driver.h network/bridge_driver.c
472

473
INTERFACE_DRIVER_SOURCES =					\
474
		interface/netcf_driver.h interface/netcf_driver.c
475

476
SECRET_DRIVER_SOURCES =						\
477
		secret/secret_driver.h secret/secret_driver.c
478

479
# Storage backend specific impls
480
STORAGE_DRIVER_SOURCES =					\
481 482
		storage/storage_driver.h storage/storage_driver.c		\
		storage/storage_backend.h storage/storage_backend.c
483 484

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

487
STORAGE_DRIVER_LVM_SOURCES =					\
488 489
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
490 491

STORAGE_DRIVER_ISCSI_SOURCES =					\
492
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
493

494
STORAGE_DRIVER_SCSI_SOURCES =					\
495
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
496

D
Dave Allan 已提交
497
STORAGE_DRIVER_MPATH_SOURCES =					\
498
		storage/storage_backend_mpath.h storage/storage_backend_mpath.c
D
Dave Allan 已提交
499

500
STORAGE_DRIVER_DISK_SOURCES =					\
501
		storage/storage_backend_disk.h storage/storage_backend_disk.c
502

503 504 505
STORAGE_DRIVER_RBD_SOURCES =					\
		storage/storage_backend_rbd.h storage/storage_backend_rbd.c

506
STORAGE_HELPER_DISK_SOURCES =					\
507
		storage/parthelper.c
508

509 510 511
UTIL_IO_HELPER_SOURCES =					\
		util/iohelper.c

512 513 514
# Network filters
NWFILTER_DRIVER_SOURCES =					\
		nwfilter/nwfilter_driver.h nwfilter/nwfilter_driver.c	\
515 516 517
		nwfilter/nwfilter_gentech_driver.c			\
		nwfilter/nwfilter_gentech_driver.h			\
		nwfilter/nwfilter_ebiptables_driver.c			\
518 519 520
		nwfilter/nwfilter_ebiptables_driver.h			\
		nwfilter/nwfilter_learnipaddr.c				\
		nwfilter/nwfilter_learnipaddr.h
521

522

523
# Security framework and drivers for various models
524
SECURITY_DRIVER_SOURCES =					\
525 526 527 528 529
		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
530

531
SECURITY_DRIVER_SELINUX_SOURCES =				\
532
		security/security_selinux.h security/security_selinux.c
533

J
Jamie Strandboge 已提交
534 535 536
SECURITY_DRIVER_APPARMOR_SOURCES =				\
		security/security_apparmor.h security/security_apparmor.c

537

538
NODE_DEVICE_DRIVER_SOURCES =					\
539 540 541
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
542 543

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
544
		node_device/node_device_hal.c			\
545
		node_device/node_device_hal.h
546

547
NODE_DEVICE_DRIVER_UDEV_SOURCES =				\
D
Daniel Veillard 已提交
548 549
		node_device/node_device_udev.c			\
		node_device/node_device_udev.h
550

J
Jiri Denemark 已提交
551 552 553 554
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	\
P
Prerna Saxena 已提交
555 556
		cpu/cpu_map.h cpu/cpu_map.c cpu/cpu_powerpc.h	\
		cpu/cpu_powerpc.c
557

558 559 560
VMX_SOURCES =							\
		vmx/vmx.c vmx/vmx.h

561 562
XENXS_SOURCES =							\
		xenxs/xenxs_private.h				\
563 564
		xenxs/xen_sxpr.c xenxs/xen_sxpr.h		\
		xenxs/xen_xm.c xenxs/xen_xm.h
565

J
Jiri Denemark 已提交
566 567
pkgdata_DATA =	cpu/cpu_map.xml

E
Eric Blake 已提交
568
EXTRA_DIST +=	$(pkgdata_DATA)
569

570 571 572 573 574 575
#########################
#
# Build up list of libvirt.la source files based on configure conditions
#
# First deal with sources usable in non-daemon context

576
noinst_LTLIBRARIES = libvirt_util.la
577 578
libvirt_la_LIBADD = $(libvirt_la_BUILT_LIBADD)
libvirt_la_BUILT_LIBADD = libvirt_util.la
579 580
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
581
libvirt_util_la_CFLAGS = $(CAPNG_CFLAGS) $(YAJL_CFLAGS) $(LIBNL_CFLAGS) \
582 583
		$(AM_CFLAGS) $(AUDIT_CFLAGS) $(DEVMAPPER_CFLAGS) \
		$(DBUS_CFLAGS)
584
libvirt_util_la_LIBADD = $(CAPNG_LIBS) $(YAJL_LIBS) $(LIBNL_LIBS) \
585
		$(THREAD_LIBS) $(AUDIT_LIBS) $(DEVMAPPER_LIBS) \
586
		$(RT_LIBS) $(DBUS_LIBS) $(MSCOM_LIBS)
587

588 589

noinst_LTLIBRARIES += libvirt_conf.la
590
libvirt_la_BUILT_LIBADD += libvirt_conf.la
591
libvirt_conf_la_SOURCES = $(CONF_SOURCES)
592 593
libvirt_conf_la_CFLAGS = $(AM_CFLAGS)
libvirt_conf_la_LDFLAGS = $(AM_LDFLAGS)
594

J
Jiri Denemark 已提交
595
noinst_LTLIBRARIES += libvirt_cpu.la
596
libvirt_la_BUILT_LIBADD += libvirt_cpu.la
J
Jiri Denemark 已提交
597
libvirt_cpu_la_CFLAGS = \
598
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
J
Jiri Denemark 已提交
599 600
libvirt_cpu_la_SOURCES = $(CPU_SOURCES)

601 602 603 604
if WITH_VMX
noinst_LTLIBRARIES += libvirt_vmx.la
libvirt_la_BUILT_LIBADD += libvirt_vmx.la
libvirt_vmx_la_CFLAGS = \
605
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
606 607 608
libvirt_vmx_la_SOURCES = $(VMX_SOURCES)
endif

609
if WITH_XENXS
610 611 612
noinst_LTLIBRARIES += libvirt_xenxs.la
libvirt_la_BUILT_LIBADD += libvirt_xenxs.la
libvirt_xenxs_la_CFLAGS = \
613
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
614 615 616
libvirt_xenxs_la_SOURCES = $(XENXS_SOURCES)
endif

617

618
noinst_LTLIBRARIES += libvirt_driver.la
619
libvirt_la_BUILT_LIBADD += libvirt_driver.la
620
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
621

M
Matthias Bolte 已提交
622
libvirt_driver_la_CFLAGS = $(NUMACTL_CFLAGS) $(GNUTLS_CFLAGS) \
623
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
M
Matthias Bolte 已提交
624
libvirt_driver_la_LIBADD = $(NUMACTL_LIBS) $(GNUTLS_LIBS) $(DLOPEN_LIBS)
625

626
USED_SYM_FILES = libvirt_private.syms
627

628
if WITH_TEST
629
noinst_LTLIBRARIES += libvirt_driver_test.la
630
libvirt_la_BUILT_LIBADD += libvirt_driver_test.la
631
libvirt_driver_test_la_CFLAGS = \
632
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
633
libvirt_driver_test_la_SOURCES = $(TEST_DRIVER_SOURCES)
634 635 636
endif

if WITH_REMOTE
637
noinst_LTLIBRARIES += libvirt_driver_remote.la
638
libvirt_la_BUILT_LIBADD += libvirt_driver_remote.la
639 640
libvirt_driver_remote_la_CFLAGS =				\
		$(GNUTLS_CFLAGS)				\
E
Eric Blake 已提交
641
		$(XDR_CFLAGS)					\
642 643
		-I$(top_srcdir)/src/conf			\
		-I$(top_srcdir)/src/rpc				\
644 645
		$(AM_CFLAGS)
libvirt_driver_remote_la_LDFLAGS = $(AM_LDFLAGS)
646 647 648 649
libvirt_driver_remote_la_LIBADD = $(GNUTLS_LIBS) \
                libvirt-net-rpc-client.la \
                libvirt-net-rpc-server.la \
                libvirt-net-rpc.la
650
libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES)
651

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

654 655
endif WITH_REMOTE

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

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

664
if WITH_XEN
E
Eric Blake 已提交
665 666 667
noinst_LTLIBRARIES += libvirt_driver_xen_impl.la
libvirt_driver_xen_la_SOURCES =
libvirt_driver_xen_la_LIBADD = libvirt_driver_xen_impl.la
668 669
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xen.la
E
Eric Blake 已提交
670 671
libvirt_driver_xen_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_xen_la_LDFLAGS = -module -avoid-version
672
else
673
noinst_LTLIBRARIES += libvirt_driver_xen.la
674 675
# Stateful, so linked to daemon instead
#libvirt_la_BUILT_LIBADD += libvirt_driver_xen.la
676
endif
E
Eric Blake 已提交
677 678

libvirt_driver_xen_impl_la_CFLAGS =					\
679
		$(XEN_CFLAGS)					\
680 681
		-I$(top_srcdir)/src/conf			\
		-I$(top_srcdir)/src/xenxs			\
682
		$(AM_CFLAGS)
E
Eric Blake 已提交
683 684 685
libvirt_driver_xen_impl_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_xen_impl_la_LIBADD = $(XEN_LIBS)
libvirt_driver_xen_impl_la_SOURCES = $(XEN_DRIVER_SOURCES)
686 687
endif

688 689
if WITH_PHYP
noinst_LTLIBRARIES += libvirt_driver_phyp.la
690
libvirt_la_BUILT_LIBADD += libvirt_driver_phyp.la
691
libvirt_driver_phyp_la_LIBADD = $(LIBSSH2_LIBS)
692
libvirt_driver_phyp_la_CFLAGS = $(LIBSSH2_CFLAGS) \
693
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
694 695 696
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
endif

697
if WITH_OPENVZ
698
noinst_LTLIBRARIES += libvirt_driver_openvz.la
699
libvirt_la_BUILT_LIBADD += libvirt_driver_openvz.la
700
libvirt_driver_openvz_la_CFLAGS = \
701
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
702
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
703 704
endif

705 706 707 708
if WITH_VMWARE
noinst_LTLIBRARIES += libvirt_driver_vmware.la
libvirt_la_BUILT_LIBADD += libvirt_driver_vmware.la
libvirt_driver_vmware_la_CFLAGS = \
709
		-I$(top_srcdir)/src/conf -I$(top_srcdir)/src/vmx $(AM_CFLAGS)
710 711 712
libvirt_driver_vmware_la_SOURCES = $(VMWARE_DRIVER_SOURCES)
endif

713 714
if WITH_VBOX
noinst_LTLIBRARIES += libvirt_driver_vbox.la
715
libvirt_la_BUILT_LIBADD += libvirt_driver_vbox.la
716
libvirt_driver_vbox_la_CFLAGS = \
717
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
718
libvirt_driver_vbox_la_LIBADD = $(DLOPEN_LIBS) $(MSCOM_LIBS)
719 720 721
libvirt_driver_vbox_la_SOURCES = $(VBOX_DRIVER_SOURCES)
endif

722 723
if WITH_XENAPI
noinst_LTLIBRARIES += libvirt_driver_xenapi.la
724
libvirt_la_BUILT_LIBADD += libvirt_driver_xenapi.la
725
libvirt_driver_xenapi_la_CFLAGS = $(LIBXENSERVER_CFLAGS) $(LIBCURL_CFLAGS) \
726
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
727
libvirt_driver_xenapi_la_LDFLAGS = $(AM_LDFLAGS)
728
libvirt_driver_xenapi_la_LIBADD = $(LIBXENSERVER_LIBS) $(LIBCURL_LIBS)
729 730 731
libvirt_driver_xenapi_la_SOURCES = $(XENAPI_DRIVER_SOURCES)
endif

J
Jim Fehlig 已提交
732
if WITH_LIBXL
E
Eric Blake 已提交
733 734 735
noinst_LTLIBRARIES += libvirt_driver_libxl_impl.la
libvirt_driver_libxl_la_SOURCES =
libvirt_driver_libxl_la_LIBADD = libvirt_driver_libxl_impl.la
J
Jim Fehlig 已提交
736 737
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_libxl.la
E
Eric Blake 已提交
738 739
libvirt_driver_libxl_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_libxl_la_LDFLAGS = -module -avoid-version
J
Jim Fehlig 已提交
740 741 742 743 744
else
noinst_LTLIBRARIES += libvirt_driver_libxl.la
# Stateful, so linked to daemon instead
#libvirt_la_BUILT_LIBADD += libvirt_driver_libxl.la
endif
E
Eric Blake 已提交
745 746

libvirt_driver_libxl_impl_la_CFLAGS = $(LIBXL_CFLAGS)		\
747 748
		-I$(top_srcdir)/src/conf			\
		-I$(top_srcdir)/src/xenxs			\
749
		$(AM_CFLAGS)
E
Eric Blake 已提交
750 751 752
libvirt_driver_libxl_impl_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_libxl_impl_la_LIBADD = $(LIBXL_LIBS) libvirt_xenxs.la
libvirt_driver_libxl_impl_la_SOURCES = $(LIBXL_DRIVER_SOURCES)
J
Jim Fehlig 已提交
753 754
endif

755
if WITH_QEMU
E
Eric Blake 已提交
756 757 758
noinst_LTLIBRARIES += libvirt_driver_qemu_impl.la
libvirt_driver_qemu_la_SOURCES =
libvirt_driver_qemu_la_LIBADD = libvirt_driver_qemu_impl.la
759 760
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_qemu.la
E
Eric Blake 已提交
761 762
libvirt_driver_qemu_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_qemu_la_LDFLAGS = -module -avoid-version
763
else
764
noinst_LTLIBRARIES += libvirt_driver_qemu.la
765
# Stateful, so linked to daemon instead
766
#libvirt_la_BUILT_LIBADD += libvirt_driver_qemu.la
767
endif
E
Eric Blake 已提交
768 769

libvirt_driver_qemu_impl_la_CFLAGS = $(NUMACTL_CFLAGS) \
770 771
                                $(GNUTLS_CFLAGS) \
                                $(LIBXML_CFLAGS) \
S
Serge Hallyn 已提交
772
                                $(LIBNL_CFLAGS) \
773
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
E
Eric Blake 已提交
774 775
libvirt_driver_qemu_impl_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_qemu_impl_la_LIBADD = $(NUMACTL_LIBS) \
776 777
				$(CAPNG_LIBS) \
                                $(GNUTLS_LIBS) \
S
Serge Hallyn 已提交
778 779
                                $(LIBXML_LIBS) \
				$(LIBNL_LIBS)
E
Eric Blake 已提交
780
libvirt_driver_qemu_impl_la_SOURCES = $(QEMU_DRIVER_SOURCES)
781

A
Amy Griffis 已提交
782
conf_DATA += qemu/qemu.conf
783

784 785
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
786
CLEANFILES += qemu/test_libvirtd_qemu.aug
787

788
endif
789
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug \
790
		qemu/test_libvirtd_qemu.aug.in qemu/THREADS.txt
791

792 793

if WITH_LXC
E
Eric Blake 已提交
794 795 796
noinst_LTLIBRARIES += libvirt_driver_lxc_impl.la
libvirt_driver_lxc_la_SOURCES =
libvirt_driver_lxc_la_LIBADD = libvirt_driver_lxc_impl.la
797 798
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_lxc.la
E
Eric Blake 已提交
799 800
libvirt_driver_lxc_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_lxc_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
801
else
802
noinst_LTLIBRARIES += libvirt_driver_lxc.la
803
# Stateful, so linked to daemon instead
804
#libvirt_la_BUILT_LIBADD += libvirt_driver_lxc.la
805
endif
E
Eric Blake 已提交
806 807

libvirt_driver_lxc_impl_la_CFLAGS = \
S
Serge Hallyn 已提交
808
		$(LIBNL_CFLAGS) \
809
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
E
Eric Blake 已提交
810
libvirt_driver_lxc_impl_la_LIBADD = $(CAPNG_LIBS) $(LIBNL_LIBS)
811
if HAVE_LIBBLKID
E
Eric Blake 已提交
812 813
libvirt_driver_lxc_impl_la_CFLAGS += $(BLKID_CFLAGS)
libvirt_driver_lxc_impl_la_LIBADD += $(BLKID_LIBS)
814
endif
815
if WITH_SECDRIVER_SELINUX
E
Eric Blake 已提交
816
libvirt_driver_lxc_impl_la_LIBADD += $(SELINUX_LIBS)
817 818
endif
if WITH_SECDRIVER_APPARMOR
E
Eric Blake 已提交
819
libvirt_driver_lxc_impl_la_LIBADD += $(APPARMOR_LIBS)
820
endif
E
Eric Blake 已提交
821
libvirt_driver_lxc_impl_la_SOURCES = $(LXC_DRIVER_SOURCES)
A
Amy Griffis 已提交
822 823 824

conf_DATA += lxc/lxc.conf

825 826
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug
827
CLEANFILES += lxc/test_libvirtd_lxc.aug
828

829
endif
830
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug.in
831

832
if WITH_UML
E
Eric Blake 已提交
833 834 835
noinst_LTLIBRARIES += libvirt_driver_uml_impl.la
libvirt_driver_uml_la_SOURCES =
libvirt_driver_uml_la_LIBADD = libvirt_driver_uml_impl.la
836 837
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_uml.la
E
Eric Blake 已提交
838 839
libvirt_driver_uml_la_LIBADD += ../gnulib/lib/libgnu.la
libvirt_driver_uml_la_LDFLAGS = -module -avoid-version
840
else
841 842
noinst_LTLIBRARIES += libvirt_driver_uml.la
# Stateful, so linked to daemon instead
843
#libvirt_la_BUILT_LIBADD += libvirt_driver_uml.la
844
endif
E
Eric Blake 已提交
845 846

libvirt_driver_uml_impl_la_CFLAGS = $(NUMACTL_CFLAGS) \
847
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
E
Eric Blake 已提交
848 849 850
libvirt_driver_uml_impl_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_uml_impl_la_LIBADD = $(NUMACTL_LIBS)
libvirt_driver_uml_impl_la_SOURCES = $(UML_DRIVER_SOURCES)
851
endif
852

D
Daniel Veillard 已提交
853

854
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
855

856 857 858
$(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 已提交
859

860 861
if WITH_ESX
noinst_LTLIBRARIES += libvirt_driver_esx.la
862
libvirt_la_BUILT_LIBADD += libvirt_driver_esx.la
863
libvirt_driver_esx_la_CFLAGS = $(LIBCURL_CFLAGS) \
864
		-I$(top_srcdir)/src/conf -I$(top_srcdir)/src/vmx $(AM_CFLAGS)
865
libvirt_driver_esx_la_LDFLAGS = $(AM_LDFLAGS)
866
libvirt_driver_esx_la_LIBADD = $(LIBCURL_LIBS)
867
libvirt_driver_esx_la_SOURCES = $(ESX_DRIVER_SOURCES)
868
libvirt_driver_esx_la_DEPENDENCIES = $(ESX_DRIVER_GENERATED)
869 870
endif

M
Matthias Bolte 已提交
871

872 873 874 875 876 877
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 已提交
878 879 880 881
if WITH_HYPERV
noinst_LTLIBRARIES += libvirt_driver_hyperv.la
libvirt_la_BUILT_LIBADD += libvirt_driver_hyperv.la
libvirt_driver_hyperv_la_CFLAGS = $(OPENWSMAN_CFLAGS) \
882
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
M
Matthias Bolte 已提交
883 884 885 886 887
libvirt_driver_hyperv_la_LDFLAGS = $(AM_LDFLAGS)
libvirt_driver_hyperv_la_LIBADD = $(OPENWSMAN_LIBS)
libvirt_driver_hyperv_la_SOURCES = $(HYPERV_DRIVER_SOURCES)
endif

888
if WITH_NETWORK
E
Eric Blake 已提交
889 890 891
noinst_LTLIBRARIES += libvirt_driver_network_impl.la
libvirt_driver_network_la_SOURCES =
libvirt_driver_network_la_LIBADD = libvirt_driver_network_impl.la
892 893
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_network.la
E
Eric Blake 已提交
894 895
libvirt_driver_network_la_LIBADD += ../gnulib/lib/libgnu.la $(LIBNL_LIBS)
libvirt_driver_network_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
896
else
897
noinst_LTLIBRARIES += libvirt_driver_network.la
898
# Stateful, so linked to daemon instead
899
#libvirt_la_BUILT_LIBADD += libvirt_driver_network.la
900
endif
E
Eric Blake 已提交
901 902

libvirt_driver_network_impl_la_CFLAGS = \
S
Serge Hallyn 已提交
903
		$(LIBNL_CFLAGS) \
904
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
E
Eric Blake 已提交
905
libvirt_driver_network_impl_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
906
endif
907 908 909 910
EXTRA_DIST += network/default.xml



911

D
Daniel Veillard 已提交
912
if WITH_NETCF
913 914 915 916
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_interface.la
else
noinst_LTLIBRARIES += libvirt_driver_interface.la
917 918
# Stateful, so linked to daemon instead
#libvirt_la_BUILT_LIBADD += libvirt_driver_interface.la
919
endif
920
libvirt_driver_interface_la_CFLAGS = $(NETCF_CFLAGS) \
921
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
922
libvirt_driver_interface_la_LDFLAGS = $(AM_LDFLAGS)
923
libvirt_driver_interface_la_LIBADD = $(NETCF_LIBS)
924
if WITH_DRIVER_MODULES
925
libvirt_driver_interface_la_LIBADD += ../gnulib/lib/libgnu.la
926 927 928
libvirt_driver_interface_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_interface_la_SOURCES = $(INTERFACE_DRIVER_SOURCES)
D
Daniel Veillard 已提交
929 930
endif

D
Daniel P. Berrange 已提交
931
if WITH_SECRETS
932 933 934 935
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_secret.la
else
noinst_LTLIBRARIES += libvirt_driver_secret.la
936
# Stateful, so linked to daemon instead
937
#libvirt_la_BUILT_LIBADD += libvirt_driver_secret.la
938
endif
939
libvirt_driver_secret_la_CFLAGS = \
940
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
941
if WITH_DRIVER_MODULES
942
libvirt_driver_secret_la_LIBADD = ../gnulib/lib/libgnu.la
943
libvirt_driver_secret_la_LDFLAGS = -module -avoid-version $(AM_LDFLAGS)
944 945
endif
libvirt_driver_secret_la_SOURCES = $(SECRET_DRIVER_SOURCES)
D
Daniel P. Berrange 已提交
946
endif
947

948 949
# Needed to keep automake quiet about conditionals
libvirt_driver_storage_la_SOURCES =
950
libvirt_driver_storage_la_CFLAGS = \
951
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
952
libvirt_driver_storage_la_LDFLAGS = $(AM_LDFLAGS)
953
libvirt_driver_storage_la_LIBADD =
954 955 956 957 958 959
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 已提交
960 961 962 963
if HAVE_LIBBLKID
libvirt_driver_storage_la_CFLAGS += $(BLKID_CFLAGS)
libvirt_driver_storage_la_LIBADD += $(BLKID_LIBS)
endif
964
if WITH_STORAGE_DIR
965 966 967
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_storage.la
else
968
noinst_LTLIBRARIES += libvirt_driver_storage.la
969
# Stateful, so linked to daemon instead
970
#libvirt_la_BUILT_LIBADD += libvirt_driver_storage.la
971 972
endif
if WITH_DRIVER_MODULES
973
libvirt_driver_storage_la_LIBADD += ../gnulib/lib/libgnu.la
974
libvirt_driver_storage_la_LDFLAGS += -module -avoid-version
975
endif
976 977
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SOURCES)
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_FS_SOURCES)
978 979
endif

980
if WITH_STORAGE_LVM
981
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
982 983
endif

984
if WITH_STORAGE_ISCSI
985
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
986 987
endif

988 989 990 991
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
992 993 994
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
995
libvirt_driver_storage_la_LIBADD += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
996 997
endif

998
if WITH_STORAGE_DISK
999
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
1000
endif
1001

1002 1003 1004 1005 1006
if WITH_STORAGE_RBD
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_RBD_SOURCES)
libvirt_driver_storage_la_LIBADD += $(LIBRBD_LIBS)
endif

1007 1008 1009 1010 1011 1012 1013
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
1014
#libvirt_la_BUILT_LIBADD += libvirt_driver_nodedev.la
1015 1016 1017
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

1018
libvirt_driver_nodedev_la_CFLAGS = \
1019
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
1020
libvirt_driver_nodedev_la_LDFLAGS = $(AM_LDFLAGS)
1021
libvirt_driver_nodedev_la_LIBADD =
1022

1023 1024 1025
if HAVE_HAL
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
1026
libvirt_driver_nodedev_la_LIBADD += $(HAL_LIBS)
1027
endif
1028 1029
if HAVE_UDEV
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
1030
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
1031
libvirt_driver_nodedev_la_LIBADD += $(UDEV_LIBS) $(PCIACCESS_LIBS)
1032
endif
1033 1034

if WITH_DRIVER_MODULES
1035
libvirt_driver_nodedev_la_LIBADD += ../gnulib/lib/libgnu.la
1036 1037 1038 1039 1040
libvirt_driver_nodedev_la_LDFLAGS += -module -avoid-version
endif
endif


1041 1042 1043 1044
if WITH_NWFILTER
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_nwfilter.la
else
1045
libvirt_la_BUILT_LIBADD += libvirt_driver_nwfilter.la
1046 1047
noinst_LTLIBRARIES += libvirt_driver_nwfilter.la
endif
1048
libvirt_driver_nwfilter_la_CFLAGS = $(LIBPCAP_CFLAGS) \
S
Serge Hallyn 已提交
1049
		-I$(top_srcdir)/src/conf $(LIBNL_CFLAGS) $(AM_CFLAGS)
1050
libvirt_driver_nwfilter_la_LDFLAGS = $(LD_AMFLAGS)
S
Serge Hallyn 已提交
1051
libvirt_driver_nwfilter_la_LIBADD = $(LIBPCAP_LIBS) $(LIBNL_LIBS)
1052
if WITH_DRIVER_MODULES
1053
libvirt_driver_nwfilter_la_LIBADD += ../gnulib/lib/libgnu.la
1054
libvirt_driver_nwfilter_la_LDFLAGS += -module -avoid-version
1055 1056 1057 1058 1059
endif
libvirt_driver_nwfilter_la_SOURCES = $(NWFILTER_DRIVER_SOURCES)
endif


1060 1061
libvirt_driver_security_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
noinst_LTLIBRARIES += libvirt_driver_security.la
1062
libvirt_la_BUILT_LIBADD += libvirt_driver_security.la
1063
libvirt_driver_security_la_CFLAGS = \
1064
		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
1065
libvirt_driver_security_la_LDFLAGS = $(AM_LDFLAGS)
1066
libvirt_driver_security_la_LIBADD =
1067 1068
if WITH_SECDRIVER_SELINUX
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
J
Jim Fehlig 已提交
1069
libvirt_driver_security_la_CFLAGS += $(SELINUX_CFLAGS)
1070
libvirt_driver_security_la_LIBADD += $(SELINUX_LIBS)
1071
endif
J
Jamie Strandboge 已提交
1072 1073 1074
if WITH_SECDRIVER_APPARMOR
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
libvirt_driver_security_la_CFLAGS += $(APPARMOR_CFLAGS)
1075
libvirt_driver_security_la_LIBADD += $(APPARMOR_LIBS)
J
Jamie Strandboge 已提交
1076
endif
1077

1078 1079 1080 1081 1082 1083 1084
# Add all conditional sources just in case...
EXTRA_DIST +=							\
		$(TEST_DRIVER_SOURCES)				\
		$(REMOTE_DRIVER_SOURCES)			\
		$(XEN_DRIVER_SOURCES)				\
		$(QEMU_DRIVER_SOURCES)				\
		$(LXC_DRIVER_SOURCES)				\
1085
		$(UML_DRIVER_SOURCES)				\
1086
		$(OPENVZ_DRIVER_SOURCES)			\
1087
		$(PHYP_DRIVER_SOURCES)				\
1088
		$(VBOX_DRIVER_SOURCES)				\
1089
		$(XENAPI_DRIVER_SOURCES)			\
J
Jim Fehlig 已提交
1090
		$(LIBXL_DRIVER_SOURCES)			\
1091
		$(ESX_DRIVER_SOURCES)				\
1092
		$(ESX_DRIVER_EXTRA_DIST)			\
M
Matthias Bolte 已提交
1093
		$(HYPERV_DRIVER_SOURCES)			\
1094
		$(HYPERV_DRIVER_EXTRA_DIST)			\
1095
		$(NETWORK_DRIVER_SOURCES)			\
1096
		$(INTERFACE_DRIVER_SOURCES)			\
1097 1098 1099 1100
		$(STORAGE_DRIVER_SOURCES)			\
		$(STORAGE_DRIVER_FS_SOURCES)			\
		$(STORAGE_DRIVER_LVM_SOURCES)			\
		$(STORAGE_DRIVER_ISCSI_SOURCES)			\
1101
		$(STORAGE_DRIVER_SCSI_SOURCES)			\
D
Dave Allan 已提交
1102
		$(STORAGE_DRIVER_MPATH_SOURCES)			\
1103
		$(STORAGE_DRIVER_DISK_SOURCES)			\
1104
		$(STORAGE_DRIVER_RBD_SOURCES)			\
1105 1106
		$(NODE_DEVICE_DRIVER_SOURCES)			\
		$(NODE_DEVICE_DRIVER_HAL_SOURCES)		\
1107
		$(NODE_DEVICE_DRIVER_UDEV_SOURCES)		\
1108
		$(NWFILTER_DRIVER_SOURCES)			\
1109
		$(SECURITY_DRIVER_SELINUX_SOURCES)		\
J
Jamie Strandboge 已提交
1110
		$(SECURITY_DRIVER_APPARMOR_SOURCES)		\
D
Daniel P. Berrange 已提交
1111
		$(SECRET_DRIVER_SOURCES)			\
1112
		$(VBOX_DRIVER_EXTRA_DIST)			\
1113 1114
		$(VMWARE_DRIVER_SOURCES)			\
		$(XENXS_SOURCES)
1115

1116 1117 1118 1119 1120 1121 1122
check-local: check-augeas

.PHONY: check-augeas check-augeas-qemu check-augeas-lxc check-augeas-sanlock

check-augeas: check-augeas-qemu check-augeas-lxc check-augeas-sanlock

AUG_GENTEST = $(top_srcdir)/build-aux/augeas-gentest.pl
1123

1124
if WITH_QEMU
1125 1126 1127 1128
qemu/test_libvirtd_qemu.aug: qemu/test_libvirtd_qemu.aug.in qemu/qemu.conf $(AUG_GENTEST)
	$(AM_V_GEN)$(AUG_GENTEST) qemu/qemu.conf $< $@

check-augeas-qemu: qemu/test_libvirtd_qemu.aug
1129
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
1130 1131 1132
	    '$(AUGPARSE)' -I $(srcdir)/qemu \
	    $(srcdir)/qemu/test_libvirtd_qemu.aug; \
	fi
1133 1134
else
check-augeas-qemu:
1135
endif
1136

1137
if WITH_LXC
1138 1139 1140 1141
lxc/test_libvirtd_lxc.aug: lxc/test_libvirtd_lxc.aug.in lxc/lxc.conf $(AUG_GENTEST)
	$(AM_V_GEN)$(AUG_GENTEST) lxc/lxc.conf $< $@

check-augeas-lxc: lxc/test_libvirtd_lxc.aug
1142
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
1143 1144 1145
	    '$(AUGPARSE)' -I $(srcdir)/lxc \
	    $(srcdir)/lxc/test_libvirtd_lxc.aug; \
	fi
1146 1147
else
check-augeas-lxc:
1148
endif
1149 1150 1151 1152 1153

locking/test_libvirt_sanlock.aug: locking/test_libvirt_sanlock.aug.in locking/qemu-sanlock.conf $(AUG_GENTEST)
	$(AM_V_GEN)$(AUG_GENTEST) locking/qemu-sanlock.conf $< $@

check-augeas-sanlock: locking/test_libvirt_sanlock.aug
1154 1155 1156 1157
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
	    '$(AUGPARSE)' -I $(srcdir)/locking \
	    $(srcdir)/locking/test_libvirt_sanlock.aug; \
	fi
1158

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

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

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

1186 1187 1188 1189
if WITH_ESX
USED_SYM_FILES += libvirt_esx.syms
endif

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

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

1198 1199 1200 1201
if WITH_OPENVZ
USED_SYM_FILES += libvirt_openvz.syms
endif

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

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

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

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

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

1233 1234 1235
GENERATED_SYM_FILES = libvirt.syms libvirt.def libvirt_qemu.def

BUILT_SOURCES += $(GENERATED_SYM_FILES)
1236

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

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

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

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

1284
if WITH_DTRACE_PROBES
1285
libvirt_la_BUILT_LIBADD += libvirt_probes.lo
1286
libvirt_la_DEPENDENCIES += libvirt_probes.lo libvirt_probes.o
1287
nodist_libvirt_la_SOURCES = libvirt_probes.h
E
Eric Blake 已提交
1288
if WITH_REMOTE
1289
$(REMOTE_DRIVER_GENERATED): libvirt_probes.h
E
Eric Blake 已提交
1290
endif WITH_REMOTE
1291

1292 1293 1294
BUILT_SOURCES += libvirt_probes.h libvirt_probes.stp libvirt_functions.stp

if WITH_QEMU
1295
libvirt_driver_qemu_la_LIBADD += libvirt_qemu_probes.lo
1296 1297 1298 1299
nodist_libvirt_driver_qemu_la_SOURCES = libvirt_qemu_probes.h

$(libvirt_driver_qemu_la_SOURCES): libvirt_qemu_probes.h
endif
1300 1301

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

1304
%_probes.h: %_probes.d
1305 1306
	$(AM_V_GEN)$(DTRACE) -o $@ -h -s $<

1307
%_probes.o: %_probes.d
1308 1309
	$(AM_V_GEN)$(DTRACE) -o $@ -G -s $<

1310 1311 1312 1313 1314 1315 1316 1317 1318
%_probes.lo: %_probes.o
	$(AM_V_GEN)printf %s\\n \
	  '# $@ - a libtool object file' \
	  '# Generated by libtool (GNU libtool) 2.4' \
	  '# Actually generated by Makefile.am, in order to shut up libtool' \
	  "pic_object='$<'" \
	  "non_pic_object='$<'" \
	> $@

J
Jiri Denemark 已提交
1319 1320 1321 1322
RPC_PROBE_FILES = $(srcdir)/rpc/virnetprotocol.x \
		  $(srcdir)/rpc/virkeepaliveprotocol.x \
		  $(srcdir)/remote/remote_protocol.x \
		  $(srcdir)/remote/qemu_protocol.x
1323 1324 1325 1326

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

1327 1328 1329
%_probes.stp: %_probes.d $(srcdir)/dtrace2systemtap.pl
	$(AM_V_GEN)perl -w $(srcdir)/dtrace2systemtap.pl \
	  $(bindir) $(sbindir) $(libdir) $< > $@
1330

1331
CLEANFILES += libvirt_probes.h libvirt_probes.o libvirt_probes.lo \
1332
              libvirt_qemu_probes.h libvirt_qemu_probes.o \
1333
              libvirt_qemu_probes.lo\
1334 1335
              libvirt_functions.stp libvirt_probes.stp \
              libvirt_qemu_probes.stp
1336 1337
endif

1338
EXTRA_DIST += libvirt_probes.d libvirt_qemu_probes.d
1339

C
Chris Lalancette 已提交
1340 1341
libvirt_qemu_la_SOURCES = libvirt-qemu.c
libvirt_qemu_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_QEMU_SYMBOL_FILE) \
E
Eric Blake 已提交
1342 1343
			  -version-info $(LIBVIRT_VERSION_INFO) \
			  $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS) \
1344 1345
			  $(AM_LDFLAGS)
libvirt_qemu_la_CFLAGS = $(AM_CFLAGS)
C
Chris Lalancette 已提交
1346
libvirt_qemu_la_LIBADD = libvirt.la $(CYGWIN_EXTRA_LIBADD)
E
Eric Blake 已提交
1347
EXTRA_DIST += $(LIBVIRT_QEMU_SYMBOL_FILE)
1348

1349 1350 1351 1352 1353 1354 1355
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
1356
sanlock_la_LIBADD = -lsanlock_client \
1357 1358 1359 1360
		../gnulib/lib/libgnu.la

augeas_DATA += locking/libvirt_sanlock.aug
augeastest_DATA += locking/test_libvirt_sanlock.aug
1361
CLEANFILES += locking/test_libvirt_sanlock.aug
1362 1363

$(builddir)/locking/%-sanlock.conf: $(srcdir)/locking/sanlock.conf
1364
	$(AM_V_GEN)$(MKDIR_P) locking ; \
1365 1366 1367 1368 1369
	cp $< $@

if WITH_QEMU
conf_DATA += locking/qemu-sanlock.conf
BUILT_SOURCES += locking/qemu-sanlock.conf
E
Eric Blake 已提交
1370
DISTCLEANFILES += locking/qemu-sanlock.conf
1371
endif
1372
else
1373
EXTRA_DIST += $(LOCK_DRIVER_SANLOCK_SOURCES)
1374
endif
1375 1376
EXTRA_DIST += locking/sanlock.conf \
	locking/libvirt_sanlock.aug \
1377
	locking/test_libvirt_sanlock.aug.in
1378

1379 1380 1381 1382
noinst_LTLIBRARIES += \
	libvirt-net-rpc.la \
	libvirt-net-rpc-server.la \
	libvirt-net-rpc-client.la
1383

1384
EXTRA_DIST += \
E
Eric Blake 已提交
1385 1386 1387 1388
	dtrace2systemtap.pl \
	rpc/gendispatch.pl \
	rpc/genprotocol.pl \
	rpc/gensystemtap.pl \
J
Jiri Denemark 已提交
1389 1390
	rpc/virnetprotocol.x \
	rpc/virkeepaliveprotocol.x
1391

E
Eric Blake 已提交
1392 1393
VIR_NET_RPC_GENERATED = \
	$(srcdir)/rpc/virnetprotocol.h \
J
Jiri Denemark 已提交
1394 1395 1396
	$(srcdir)/rpc/virnetprotocol.c \
	$(srcdir)/rpc/virkeepaliveprotocol.h \
	$(srcdir)/rpc/virkeepaliveprotocol.c
1397

1398
BUILT_SOURCES += $(VIR_NET_RPC_GENERATED)
1399

1400
libvirt_net_rpc_la_SOURCES = \
1401
	rpc/virnetmessage.h rpc/virnetmessage.c \
1402
	rpc/virnetprotocol.h rpc/virnetprotocol.c \
1403
	rpc/virnetsocket.h rpc/virnetsocket.c \
J
Jiri Denemark 已提交
1404
	rpc/virnettlscontext.h rpc/virnettlscontext.c \
1405 1406
	rpc/virkeepaliveprotocol.h rpc/virkeepaliveprotocol.c \
	rpc/virkeepalive.h rpc/virkeepalive.c
1407 1408 1409 1410 1411 1412 1413
if HAVE_SASL
libvirt_net_rpc_la_SOURCES += \
	rpc/virnetsaslcontext.h rpc/virnetsaslcontext.c
else
EXTRA_DIST += \
	rpc/virnetsaslcontext.h rpc/virnetsaslcontext.c
endif
1414
libvirt_net_rpc_la_CFLAGS = \
1415
			$(GNUTLS_CFLAGS) \
1416
			$(SASL_CFLAGS) \
1417
			$(XDR_CFLAGS) \
1418 1419
			$(AM_CFLAGS)
libvirt_net_rpc_la_LDFLAGS = \
1420
			$(GNUTLS_LIBS) \
1421
			$(SASL_LIBS) \
1422 1423 1424 1425 1426 1427
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)

1428 1429 1430 1431 1432
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
1433 1434 1435 1436 1437 1438 1439
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
1440
libvirt_net_rpc_server_la_CFLAGS = \
1441
			$(AVAHI_CFLAGS) \
E
Eric Blake 已提交
1442
			$(XDR_CFLAGS) \
J
Jim Fehlig 已提交
1443 1444
			$(AM_CFLAGS) \
			$(POLKIT_CFLAGS)
1445 1446
libvirt_net_rpc_server_la_LDFLAGS = \
			$(AM_LDFLAGS) \
1447
			$(AVAHI_LIBS) \
J
Jim Fehlig 已提交
1448
			$(POLKIT_LIBS) \
1449 1450 1451 1452 1453
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_server_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)

1454 1455 1456 1457 1458
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 已提交
1459 1460
			$(AM_CFLAGS) \
			$(XDR_CFLAGS)
1461 1462 1463 1464 1465 1466
libvirt_net_rpc_client_la_LDFLAGS = \
			$(AM_LDFLAGS) \
			$(CYGWIN_EXTRA_LDFLAGS) \
			$(MINGW_EXTRA_LDFLAGS)
libvirt_net_rpc_client_la_LIBADD = \
			$(CYGWIN_EXTRA_LIBADD)
1467

1468 1469
libexec_PROGRAMS =

1470
if WITH_LIBVIRTD
1471 1472 1473 1474 1475 1476 1477 1478
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)
1479
endif
1480

1481
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
1482
if WITH_LIBVIRTD
1483
libexec_PROGRAMS += libvirt_parthelper
1484

1485
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
1486
libvirt_parthelper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
1487 1488 1489 1490 1491
libvirt_parthelper_LDADD =		\
		$(LIBPARTED_LIBS)	\
		libvirt_util.la		\
		../gnulib/lib/libgnu.la

1492
libvirt_parthelper_CFLAGS = $(LIBPARTED_CFLAGS) $(AM_CFLAGS)
R
Richard W.M. Jones 已提交
1493
endif
1494
endif
1495 1496
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

1497

1498 1499 1500 1501 1502 1503
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

libvirt_lxc_SOURCES =						\
		$(LXC_CONTROLLER_SOURCES)			\
1504
		$(UTIL_SOURCES)					\
1505 1506
		$(NODE_INFO_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
1507
		$(NETDEV_CONF_SOURCES)				\
1508
		$(DOMAIN_CONF_SOURCES)				\
1509
		$(SECRET_CONF_SOURCES)				\
1510
		$(CPU_CONF_SOURCES)				\
1511
		$(SECURITY_DRIVER_SOURCES)			\
1512
		$(NWFILTER_PARAM_CONF_SOURCES)
1513 1514 1515 1516 1517 1518
if WITH_SECDRIVER_SELINUX
libvirt_lxc_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
endif
if WITH_SECDRIVER_APPARMOR
libvirt_lxc_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
endif
1519
libvirt_lxc_LDFLAGS = $(WARN_CFLAGS) $(AM_LDFLAGS)
1520
libvirt_lxc_LDADD = $(CAPNG_LIBS) $(YAJL_LIBS) \
E
Eric Blake 已提交
1521
		$(LIBXML_LIBS) $(NUMACTL_LIBS) $(THREAD_LIBS) \
1522
		$(LIBNL_LIBS) $(AUDIT_LIBS) $(DEVMAPPER_LIBS) \
1523
		$(RT_LIBS) $(DBUS_LIBS) \
1524
		../gnulib/lib/libgnu.la
1525
if WITH_DTRACE_PROBES
1526
libvirt_lxc_LDADD += libvirt_probes.lo
1527
endif
1528 1529 1530
if WITH_SECDRIVER_SELINUX
libvirt_lxc_LDADD += $(SELINUX_LIBS)
endif
J
Jiri Denemark 已提交
1531 1532 1533
if WITH_SECDRIVER_APPARMOR
libvirt_lxc_LDADD += $(APPARMOR_LIBS)
endif
1534 1535 1536 1537
libvirt_lxc_CFLAGS =				\
		$(LIBPARTED_CFLAGS)		\
		$(NUMACTL_CFLAGS)		\
		$(CAPNG_CFLAGS)			\
1538
		$(YAJL_CFLAGS)			\
1539
		$(AUDIT_CFLAGS)			\
1540
		$(DBUS_CFLAGS)			\
S
Serge Hallyn 已提交
1541
		$(LIBNL_CFLAGS)			\
1542
		-I$(top_srcdir)/src/conf	\
1543
		$(AM_CFLAGS)
1544 1545 1546 1547
if HAVE_LIBBLKID
libvirt_lxc_CFLAGS += $(BLKID_CFLAGS)
libvirt_lxc_LDADD += $(BLKID_LIBS)
endif
1548 1549 1550
if WITH_SECDRIVER_SELINUX
libvirt_lxc_CFLAGS += $(SELINUX_CFLAGS)
endif
J
Jiri Denemark 已提交
1551 1552 1553
if WITH_SECDRIVER_APPARMOR
libvirt_lxc_CFLAGS += $(APPARMOR_CFLAGS)
endif
1554 1555 1556 1557
endif
endif
EXTRA_DIST += $(LXC_CONTROLLER_SOURCES)

J
Jamie Strandboge 已提交
1558 1559 1560 1561 1562 1563
if WITH_SECDRIVER_APPARMOR
if WITH_LIBVIRTD
libexec_PROGRAMS += virt-aa-helper

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1564
virt_aa_helper_LDFLAGS = $(WARN_LDFLAGS) $(AM_LDFLAGS)
J
Jamie Strandboge 已提交
1565
virt_aa_helper_LDADD =						\
1566
		$(LIBXML_LIBS)					\
C
Chris Lalancette 已提交
1567 1568 1569
		libvirt_conf.la					\
		libvirt_util.la					\
		../gnulib/lib/libgnu.la
1570
if WITH_DTRACE_PROBES
1571
virt_aa_helper_LDADD += libvirt_probes.lo
1572
endif
J
Jamie Strandboge 已提交
1573
virt_aa_helper_CFLAGS =						\
1574 1575
		-I$(top_srcdir)/src/conf			\
		-I$(top_srcdir)/src/security			\
1576
		$(AM_CFLAGS)
J
Jamie Strandboge 已提交
1577 1578 1579 1580
endif
endif
EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1581
install-data-local:
1582 1583
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/images"
1584
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems"
1585
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/boot"
1586 1587 1588
if HAVE_SANLOCK
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock"
endif
1589 1590 1591
if WITH_QEMU
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/qemu"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/qemu"
1592
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu"
1593
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/qemu"
1594 1595 1596 1597 1598
endif
if WITH_LXC
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/lxc"
endif
J
Jim Fehlig 已提交
1599 1600 1601
if WITH_LIBXL
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/libxl"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/libxl"
J
Jim Fehlig 已提交
1602
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/libxl"
J
Jim Fehlig 已提交
1603
endif
1604 1605 1606 1607 1608 1609
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"
1610
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/dnsmasq"
1611
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/network"
1612 1613 1614 1615
	$(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 已提交
1616 1617 1618 1619 1620 1621
	  { 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; }
1622
	test -e $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml || \
E
Eric Blake 已提交
1623
	   ln -s ../default.xml \
1624 1625 1626 1627 1628 1629
	    $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
endif

uninstall-local::
	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt" ||:
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/images" ||:
1630
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/filesystems" ||:
1631
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/boot" ||:
1632 1633 1634
if HAVE_SANLOCK
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/sanlock" ||:
endif
1635 1636 1637 1638 1639
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" ||:
1640
endif
1641 1642 1643 1644
if WITH_LXC
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/lxc" ||:
endif
J
Jim Fehlig 已提交
1645 1646 1647
if WITH_LIBXL
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/libxl" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1648
	rmdir "$(DESTDIR)$(localstatedir)/log/libvirt/libxl" ||:
J
Jim Fehlig 已提交
1649
endif
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
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 已提交
1663

1664 1665 1666
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)