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

3 4 5 6 7 8 9
# No libraries with the exception of LIBXML should be listed
# here. List them against the individual XXX_la_CFLAGS targets
# that actually use them
INCLUDES =							\
		-I$(top_srcdir)/gnulib/lib			\
		-I../gnulib/lib					\
		-I../include					\
10
		-I@top_srcdir@/src/util				\
11 12 13 14 15 16 17 18
		-I@top_srcdir@/include				\
		$(DRIVER_MODULE_CFLAGS)				\
		$(LIBXML_CFLAGS)				\
		-DLIBDIR=\""$(libdir)"\"			\
		-DBINDIR=\""$(libexecdir)"\"			\
		-DSBINDIR=\""$(sbindir)"\"			\
		-DSYSCONF_DIR="\"$(sysconfdir)\""		\
		-DLOCALEBASEDIR=\""$(datadir)/locale"\"		\
19
		-DPKGDATADIR=\""$(pkgdatadir)"\"		\
20 21 22
		-DLOCAL_STATE_DIR=\""$(localstatedir)"\"	\
		-DGETTEXT_PACKAGE=\"$(PACKAGE)\"		\
		$(WARN_CFLAGS)					\
23 24 25
		$(LOCK_CHECKING_CFLAGS)			\
		-DIN_LIBVIRT				\
		$(WIN32_EXTRA_CFLAGS)
26

27
EXTRA_DIST = $(conf_DATA)
28

29 30
BUILT_SOURCES =

31 32 33
if WITH_NETWORK
UUID=$(shell uuidgen 2>/dev/null)
endif
34

35
lib_LTLIBRARIES = libvirt.la
36

37 38 39
moddir = $(libdir)/libvirt/drivers
mod_LTLIBRARIES =

A
Amy Griffis 已提交
40 41
confdir = $(sysconfdir)/libvirt
conf_DATA =
42

43 44 45 46 47 48
augeasdir = $(datadir)/augeas/lenses
augeas_DATA =

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

49 50
# These files are not related to driver APIs. Simply generic
# helper APIs for various purposes
51
UTIL_SOURCES =							\
52
		util/authhelper.c util/authhelper.h		\
53 54 55 56 57 58
		util/bridge.c util/bridge.h			\
		util/buf.c util/buf.h				\
		util/conf.c util/conf.h				\
		util/cgroup.c util/cgroup.h			\
		util/event.c util/event.h			\
		util/hash.c util/hash.h				\
D
Daniel Veillard 已提交
59
		util/hooks.c util/hooks.h			\
60
		util/iptables.c util/iptables.h			\
G
Gerhard Stenzel 已提交
61
		util/ebtables.c util/ebtables.h			\
62
		util/dnsmasq.c util/dnsmasq.h                   \
63
		util/json.c util/json.h				\
64
		util/logging.c util/logging.h			\
65
		util/macvtap.c util/macvtap.h			\
66 67
		util/memory.c util/memory.h			\
		util/pci.c util/pci.h				\
68
		util/processinfo.c util/processinfo.h		\
69
		util/hostusb.c util/hostusb.h			\
70
		util/network.c util/network.h			\
71
		util/interface.c util/interface.h		\
72 73
		util/qparams.c util/qparams.h			\
		util/stats_linux.c util/stats_linux.h		\
74
		util/storage_file.c util/storage_file.h		\
75 76 77 78 79 80 81 82 83
		util/threads.c util/threads.h			\
		util/threads-pthread.h				\
		util/threads-win32.h				\
		util/uuid.c util/uuid.h				\
		util/util.c util/util.h				\
		util/xml.c util/xml.h				\
		util/virterror.c util/virterror_internal.h

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

85
# Internal generic driver infrastructure
86
NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c
87
DRIVER_SOURCES =						\
88
		driver.c driver.h				\
89 90
		internal.h					\
		datatypes.c datatypes.h				\
91
		$(NODE_INFO_SOURCES)				\
92 93 94
		libvirt.c libvirt_internal.h


95
# XML configuration format handling sources
96 97
# Domain driver generic impl APIs
DOMAIN_CONF_SOURCES =						\
98 99 100 101 102
		conf/capabilities.c conf/capabilities.h		\
		conf/domain_conf.c conf/domain_conf.h

DOMAIN_EVENT_SOURCES =						\
		conf/domain_event.c conf/domain_event.h
103 104

# Network driver generic impl APIs
105
NETWORK_CONF_SOURCES =						\
106
		conf/network_conf.c conf/network_conf.h
107

108 109
# Network filter driver generic impl APIs
NWFILTER_PARAM_CONF_SOURCES =					\
110 111
		conf/nwfilter_params.c conf/nwfilter_params.h	\
		conf/nwfilter_conf.h
112 113 114 115 116

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

117
# Storage driver generic impl APIs
118 119
STORAGE_CONF_SOURCES =                                         \
		conf/storage_conf.h conf/storage_conf.c
120

121
# Interface driver generic impl APIs
122 123
INTERFACE_CONF_SOURCES =                                       \
		conf/interface_conf.c conf/interface_conf.h
124

125
# Secret driver generic impl APIs
126 127 128 129 130 131 132 133 134 135
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

136 137 138
CPU_CONF_SOURCES =						\
		conf/cpu_conf.c conf/cpu_conf.h

139 140 141 142
CONF_SOURCES =							\
		$(DOMAIN_CONF_SOURCES)				\
		$(DOMAIN_EVENT_SOURCES)				\
		$(NETWORK_CONF_SOURCES)				\
143
		$(NWFILTER_CONF_SOURCES)			\
144 145 146 147
		$(NODE_DEVICE_CONF_SOURCES)			\
		$(STORAGE_CONF_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
		$(INTERFACE_CONF_SOURCES)			\
148 149
		$(SECRET_CONF_SOURCES)				\
		$(CPU_CONF_SOURCES)
150

151 152
# The remote RPC driver, covering domains, storage, networks, etc
REMOTE_DRIVER_SOURCES =						\
153 154
		gnutls_1_0_compat.h			\
		remote/remote_driver.c remote/remote_driver.h	\
155 156 157 158
		remote/remote_protocol.c			\
		remote/remote_protocol.h

EXTRA_DIST += remote/remote_protocol.x remote/rpcgen_fix.pl
159

160 161 162 163 164 165 166 167 168 169 170 171
# 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
.PHONY: remote_protocol-structs
remote_protocol-structs:
172
	$(AM_V_GEN)if (pdwtags --help) > /dev/null 2>&1; then		\
173 174 175 176 177 178 179 180 181
	  pdwtags libvirt_driver_remote_la-remote_protocol.$(OBJEXT)	\
	    | perl -0777 -n						\
		-e 'foreach my $$p (split m!\n\n/\* \d+ \*/\n!)'	\
		-e '  { if ($$p =~ /^struct remote_/) {'		\
		-e '      $$p =~ s!\t*/\*.*?\*/!!sg;'			\
		-e '      $$p =~ s!\s+\n!\n!sg;'			\
		-e '      $$p =~ s!\s+$$!!;'				\
		-e '      print "$$p\n" } }'				\
		> $@-t;							\
182
	  diff -u $@-t $(srcdir)/$@; st=$$?; rm -f $@-t; exit $$st;	\
183 184 185 186 187 188 189
	else								\
	  echo 'WARNING: you lack pdwtags; skipping the $@ test';	\
	  echo 'WARNING: install the dwarves package to get pdwtags';	\
	fi
EXTRA_DIST += remote_protocol-structs
check-local: remote_protocol-structs

190 191
# Mock driver, covering domains, storage, networks, etc
TEST_DRIVER_SOURCES =						\
192
		test/test_driver.c test/test_driver.h
193 194 195 196 197



# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
198 199 200 201 202 203 204 205
		xen/proxy_internal.c xen/proxy_internal.h	\
		xen/sexpr.c xen/sexpr.h				\
		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
206
if WITH_XEN_INOTIFY
207
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
208
endif
209 210

LXC_DRIVER_SOURCES =						\
211 212 213
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_driver.c lxc/lxc_driver.h		\
214
		lxc/veth.c lxc/veth.h
215

216
LXC_CONTROLLER_SOURCES =					\
217 218 219
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_controller.c				\
220
		lxc/veth.c lxc/veth.h
221

J
Jamie Strandboge 已提交
222 223 224
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES =			\
		security/virt-aa-helper.c

225 226 227
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

228
OPENVZ_DRIVER_SOURCES =						\
229 230
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
231

232 233 234
VBOX_DRIVER_SOURCES =						\
        vbox/vbox_XPCOMCGlue.c vbox/vbox_XPCOMCGlue.h		\
        vbox/vbox_driver.c vbox/vbox_driver.h			\
235
        vbox/vbox_V2_2.c vbox/vbox_CAPI_v2_2.h			\
236 237
        vbox/vbox_V3_0.c vbox/vbox_CAPI_v3_0.h			\
        vbox/vbox_V3_1.c vbox/vbox_CAPI_v3_1.h
238

239 240
VBOX_DRIVER_EXTRA_DIST = vbox/vbox_tmpl.c vbox/README

241
QEMU_DRIVER_SOURCES =						\
242
		qemu/qemu_conf.c qemu/qemu_conf.h		\
243
		qemu/qemu_monitor.c qemu/qemu_monitor.h		\
244 245
		qemu/qemu_monitor_text.c			\
		qemu/qemu_monitor_text.h			\
D
Daniel P. Berrange 已提交
246 247 248
		qemu/qemu_monitor_json.c			\
		qemu/qemu_monitor_json.h			\
		qemu/qemu_driver.c qemu/qemu_driver.h		\
E
Eric Blake 已提交
249
		qemu/qemu_bridge_filter.c			\
250 251
		qemu/qemu_bridge_filter.h			\
		qemu/qemu_security_stacked.h			\
252 253 254
		qemu/qemu_security_stacked.c			\
		qemu/qemu_security_dac.h			\
		qemu/qemu_security_dac.c
R
Richard W.M. Jones 已提交
255

256 257
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
258
		xenapi/xenapi_driver_private.h					\
259 260
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

261
UML_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
262 263
		uml/uml_conf.c uml/uml_conf.h			\
		uml/uml_driver.c uml/uml_driver.h
264

265 266 267 268 269 270
ONE_DRIVER_SOURCES =						\
		./opennebula/one_conf.c				\
		./opennebula/one_conf.h				\
		./opennebula/one_driver.c			\
		./opennebula/one_driver.h			\
		./opennebula/one_client.c			\
271
		./opennebula/one_client.h
D
Daniel Veillard 已提交
272

273
ESX_DRIVER_SOURCES =						\
274
		esx/esx_private.h						\
275
		esx/esx_driver.c esx/esx_driver.h		\
276 277 278 279 280
		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 已提交
281
		esx/esx_nwfilter_driver.c esx/esx_nwfilter_driver.h		\
282 283
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
284 285 286 287
		esx/esx_vi_methods.c esx/esx_vi_methods.h	\
		esx/esx_vi_types.c esx/esx_vi_types.h		\
		esx/esx_vmx.c esx/esx_vmx.h

288
ESX_DRIVER_GENERATED =							\
289 290
		esx/esx_vi_methods.generated.c				\
		esx/esx_vi_methods.generated.h				\
291 292 293 294 295 296 297 298 299 300 301 302 303
		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			\
		esx/esx_vi_types.generated.typefromstring

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

304
NETWORK_DRIVER_SOURCES =					\
305
		network/bridge_driver.h network/bridge_driver.c
306

307
INTERFACE_DRIVER_SOURCES =					\
308
		interface/netcf_driver.h interface/netcf_driver.c
309

310
SECRET_DRIVER_SOURCES =						\
311
		secret/secret_driver.h secret/secret_driver.c
312

313
# Storage backend specific impls
314
STORAGE_DRIVER_SOURCES =					\
315 316
		storage/storage_driver.h storage/storage_driver.c		\
		storage/storage_backend.h storage/storage_backend.c
317 318

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

321
STORAGE_DRIVER_LVM_SOURCES =					\
322 323
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
324 325

STORAGE_DRIVER_ISCSI_SOURCES =					\
326
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
327

328
STORAGE_DRIVER_SCSI_SOURCES =					\
329
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
330

D
Dave Allan 已提交
331
STORAGE_DRIVER_MPATH_SOURCES =					\
332
		storage/storage_backend_mpath.h storage/storage_backend_mpath.c
D
Dave Allan 已提交
333

334
STORAGE_DRIVER_DISK_SOURCES =					\
335
		storage/storage_backend_disk.h storage/storage_backend_disk.c
336 337

STORAGE_HELPER_DISK_SOURCES =					\
338
		storage/parthelper.c
339

340 341 342
# Network filters
NWFILTER_DRIVER_SOURCES =					\
		nwfilter/nwfilter_driver.h nwfilter/nwfilter_driver.c	\
343 344 345
		nwfilter/nwfilter_gentech_driver.c			\
		nwfilter/nwfilter_gentech_driver.h			\
		nwfilter/nwfilter_ebiptables_driver.c			\
346 347 348
		nwfilter/nwfilter_ebiptables_driver.h			\
		nwfilter/nwfilter_learnipaddr.c				\
		nwfilter/nwfilter_learnipaddr.h
349

350

351
# Security framework and drivers for various models
352
SECURITY_DRIVER_SOURCES =					\
353
		security/security_driver.h security/security_driver.c
354

355
SECURITY_DRIVER_SELINUX_SOURCES =				\
356
		security/security_selinux.h security/security_selinux.c
357

J
Jamie Strandboge 已提交
358 359 360
SECURITY_DRIVER_APPARMOR_SOURCES =				\
		security/security_apparmor.h security/security_apparmor.c

361

362
NODE_DEVICE_DRIVER_SOURCES =					\
363 364 365
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
366 367

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
368
		node_device/node_device_hal.c			\
369
		node_device/node_device_hal.h
370

371
NODE_DEVICE_DRIVER_UDEV_SOURCES =				\
D
Daniel Veillard 已提交
372 373
		node_device/node_device_udev.c			\
		node_device/node_device_udev.h
374

J
Jiri Denemark 已提交
375 376 377 378 379
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
380

J
Jiri Denemark 已提交
381 382
pkgdata_DATA =	cpu/cpu_map.xml

E
Eric Blake 已提交
383
EXTRA_DIST +=	$(pkgdata_DATA)
384

385 386 387 388 389 390
#########################
#
# Build up list of libvirt.la source files based on configure conditions
#
# First deal with sources usable in non-daemon context

391
noinst_LTLIBRARIES = libvirt_util.la
392 393
libvirt_la_LIBADD = $(libvirt_la_BUILT_LIBADD)
libvirt_la_BUILT_LIBADD = libvirt_util.la
394 395
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
E
Eric Blake 已提交
396
libvirt_util_la_CFLAGS = $(CAPNG_CFLAGS) $(YAJL_CFLAGS)
397
libvirt_util_la_LIBADD = $(CAPNG_LIBS) $(YAJL_LIBS) $(LIB_PTHREAD)
398

399 400

noinst_LTLIBRARIES += libvirt_conf.la
401
libvirt_la_BUILT_LIBADD += libvirt_conf.la
402 403 404 405
libvirt_conf_la_SOURCES = $(CONF_SOURCES)
libvirt_conf_la_CFLAGS =
libvirt_conf_la_LDFLAGS =

J
Jiri Denemark 已提交
406
noinst_LTLIBRARIES += libvirt_cpu.la
407
libvirt_la_BUILT_LIBADD += libvirt_cpu.la
J
Jiri Denemark 已提交
408 409 410 411
libvirt_cpu_la_CFLAGS = \
		-I@top_srcdir@/src/conf
libvirt_cpu_la_SOURCES = $(CPU_SOURCES)

412

413
noinst_LTLIBRARIES += libvirt_driver.la
414
libvirt_la_BUILT_LIBADD += libvirt_driver.la
415
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
416

417 418
libvirt_driver_la_CFLAGS = $(NUMACTL_CFLAGS)	\
		-I@top_srcdir@/src/conf
419
libvirt_driver_la_LIBADD = $(NUMACTL_LIBS)
420

421
USED_SYM_FILES = libvirt_private.syms
422

423
if WITH_TEST
424 425 426
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_test.la
else
427
noinst_LTLIBRARIES += libvirt_driver_test.la
428
libvirt_la_BUILT_LIBADD += libvirt_driver_test.la
429
endif
430 431
libvirt_driver_test_la_CFLAGS = \
		-I@top_srcdir@/src/conf
432 433 434
if WITH_DRIVER_MODULES
libvirt_driver_test_la_LDFLAGS = -module -avoid-version
endif
435
libvirt_driver_test_la_SOURCES = $(TEST_DRIVER_SOURCES)
436 437 438
endif

if WITH_REMOTE
439 440 441
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_remote.la
else
442
noinst_LTLIBRARIES += libvirt_driver_remote.la
443
libvirt_la_BUILT_LIBADD += libvirt_driver_remote.la
444
endif
445 446
libvirt_driver_remote_la_CFLAGS =				\
		$(GNUTLS_CFLAGS)				\
447
		$(SASL_CFLAGS)					\
448
		-I@top_srcdir@/src/conf
449 450
libvirt_driver_remote_la_LDFLAGS =
libvirt_driver_remote_la_LIBADD = $(GNUTLS_LIBS) $(SASL_LIBS)
451 452 453
if WITH_DRIVER_MODULES
libvirt_driver_remote_la_LDFLAGS += -module -avoid-version
endif
454
libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES)
455 456 457 458 459 460

if HAVE_RPCGEN
#
# Maintainer-only target for re-generating the derived .c/.h source
# files, which are actually derived from the .x file.
#
461
# For committing protocol changes to GIT, the GLIBC rpcgen *must*
462 463 464 465 466 467 468 469 470 471
# be used.
#
# Support for non-GLIB rpcgen is here as a convenience for
# non-Linux people needing to test changes during dev.
#
rpcgen:
	rm -f rp.c-t rp.h-t rp.c-t1 rp.c-t2 rp.h-t1
	$(RPCGEN) -h -o rp.h-t $(srcdir)/remote/remote_protocol.x
	$(RPCGEN) -c -o rp.c-t $(srcdir)/remote/remote_protocol.x
if HAVE_GLIBC_RPCGEN
P
Paolo Bonzini 已提交
472 473
	perl -w $(srcdir)/remote/rpcgen_fix.pl rp.h-t > rp.h-t1
	perl -w $(srcdir)/remote/rpcgen_fix.pl rp.c-t > rp.c-t1
474 475 476 477 478 479 480 481 482 483 484 485 486
	(echo '#include <config.h>'; cat rp.c-t1) > rp.c-t2
	chmod 0444 rp.c-t2 rp.h-t1
	mv -f rp.h-t1 $(srcdir)/remote/remote_protocol.h
	mv -f rp.c-t2 $(srcdir)/remote/remote_protocol.c
	rm -f rp.c-t rp.h-t rp.c-t1
else
	chmod 0444 rp.c-t rp.h-t
	mv -f rp.h-t $(srcdir)/remote/remote_protocol.h
	mv -f rp.c-t $(srcdir)/remote/remote_protocol.c
endif
endif

remote/remote_protocol.c: remote/remote_protocol.h
487 488 489
endif

if WITH_XEN
490 491 492
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xen.la
else
493
noinst_LTLIBRARIES += libvirt_driver_xen.la
494
libvirt_la_BUILT_LIBADD += libvirt_driver_xen.la
495
endif
E
Eric Blake 已提交
496
libvirt_driver_xen_la_CFLAGS =					\
497 498
		$(XEN_CFLAGS)					\
		-I@top_srcdir@/src/conf
499 500
libvirt_driver_xen_la_LDFLAGS =
libvirt_driver_xen_la_LIBADD = $(XEN_LIBS)
501 502 503
if WITH_DRIVER_MODULES
libvirt_driver_xen_la_LDFLAGS += -module -avoid-version
endif
504
libvirt_driver_xen_la_SOURCES = $(XEN_DRIVER_SOURCES)
505 506
endif

507 508 509 510 511
if WITH_PHYP
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_phyp.la
else
noinst_LTLIBRARIES += libvirt_driver_phyp.la
512
libvirt_la_BUILT_LIBADD += libvirt_driver_phyp.la
513
endif
514
libvirt_driver_phyp_la_LIBADD = $(LIBSSH2_LIBS)
515 516
libvirt_driver_phyp_la_CFLAGS = $(LIBSSH2_CFLAGS) \
		-I@top_srcdir@/src/conf
517 518 519
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
endif

520
if WITH_OPENVZ
521 522 523
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_openvz.la
else
524
noinst_LTLIBRARIES += libvirt_driver_openvz.la
525
libvirt_la_BUILT_LIBADD += libvirt_driver_openvz.la
526
endif
527 528
libvirt_driver_openvz_la_CFLAGS = \
		-I@top_srcdir@/src/conf
529 530 531
if WITH_DRIVER_MODULES
libvirt_driver_openvz_la_LDFLAGS = -module -avoid-version
endif
532
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
533 534
endif

535 536 537 538 539
if WITH_VBOX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_vbox.la
else
noinst_LTLIBRARIES += libvirt_driver_vbox.la
540
libvirt_la_BUILT_LIBADD += libvirt_driver_vbox.la
541
endif
542 543
libvirt_driver_vbox_la_CFLAGS = \
		-I@top_srcdir@/src/conf
544 545 546
if WITH_DRIVER_MODULES
libvirt_driver_vbox_la_LDFLAGS = -module -avoid-version
endif
547
libvirt_driver_vbox_la_LIBADD = $(DLOPEN_LIBS)
548 549 550
libvirt_driver_vbox_la_SOURCES = $(VBOX_DRIVER_SOURCES)
endif

551 552 553 554 555
if WITH_XENAPI
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xenapi.la
else
noinst_LTLIBRARIES += libvirt_driver_xenapi.la
556
libvirt_la_BUILT_LIBADD += libvirt_driver_xenapi.la
557 558 559
endif
libvirt_driver_xenapi_la_CFLAGS = $(LIBXENSERVER_CFLAGS) $(LIBCURL_CFLAGS) \
		-I@top_srcdir@/src/conf
560 561
libvirt_driver_xenapi_la_LDFLAGS =
libvirt_driver_xenapi_la_LIBADD = $(LIBXENSERVER_LIBS) $(LIBCURL_LIBS)
562 563 564 565 566 567
if WITH_DRIVER_MODULES
libvirt_driver_xenapi_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_xenapi_la_SOURCES = $(XENAPI_DRIVER_SOURCES)
endif

568
if WITH_QEMU
569 570 571
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_qemu.la
else
572
noinst_LTLIBRARIES += libvirt_driver_qemu.la
573
# Stateful, so linked to daemon instead
574
#libvirt_la_BUILT_LIBADD += libvirt_driver_qemu.la
575
endif
576 577
libvirt_driver_qemu_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
578 579
libvirt_driver_qemu_la_LDFLAGS =
libvirt_driver_qemu_la_LIBADD = $(NUMACTL_LIBS)
580 581 582
if WITH_DRIVER_MODULES
libvirt_driver_qemu_la_LDFLAGS += -module -avoid-version
endif
583
libvirt_driver_qemu_la_SOURCES = $(QEMU_DRIVER_SOURCES)
584

A
Amy Griffis 已提交
585
conf_DATA += qemu/qemu.conf
586

587 588
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
589

590
endif
591 592
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug qemu/test_libvirtd_qemu.aug

593 594

if WITH_LXC
595 596 597
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_lxc.la
else
598
noinst_LTLIBRARIES += libvirt_driver_lxc.la
599
# Stateful, so linked to daemon instead
600
#libvirt_la_BUILT_LIBADD += libvirt_driver_lxc.la
601
endif
602 603
libvirt_driver_lxc_la_CFLAGS = \
		-I@top_srcdir@/src/conf
604 605 606
if WITH_DRIVER_MODULES
libvirt_driver_lxc_la_LDFLAGS = -module -avoid-version
endif
607
libvirt_driver_lxc_la_SOURCES = $(LXC_DRIVER_SOURCES)
A
Amy Griffis 已提交
608 609 610

conf_DATA += lxc/lxc.conf

611 612 613
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

614
endif
615
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
616

617
if WITH_UML
618 619 620
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_uml.la
else
621 622
noinst_LTLIBRARIES += libvirt_driver_uml.la
# Stateful, so linked to daemon instead
623
#libvirt_la_BUILT_LIBADD += libvirt_driver_uml.la
624
endif
625 626
libvirt_driver_uml_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
627 628
libvirt_driver_uml_la_LDFLAGS =
libvirt_driver_uml_la_LIBADD = $(NUMACTL_LIBS)
629 630 631
if WITH_DRIVER_MODULES
libvirt_driver_uml_la_LDFLAGS += -module -avoid-version
endif
632 633
libvirt_driver_uml_la_SOURCES = $(UML_DRIVER_SOURCES)
endif
634

D
Daniel Veillard 已提交
635 636 637 638 639 640
if WITH_ONE
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_one.la
else
noinst_LTLIBRARIES += libvirt_driver_one.la
# Stateful, so linked to daemon instead
641
#libvirt_la_BUILT_LIBADD  += libvirt_driver_one.la
D
Daniel Veillard 已提交
642
endif
643 644
libvirt_driver_one_la_CFLAGS = $(XMLRPC_CFLAGS) \
		-I@top_srcdir@/src/conf
645 646
libvirt_driver_one_la_LDFLAGS =
libvirt_driver_one_la_LIBADD = $(XMLRPC_LIBS)
D
Daniel Veillard 已提交
647 648 649 650 651 652 653 654
#libvirt_driver_one_la_CFLAGS  = "-DWITH_ONE"
if WITH_DRIVER_MODULES
libvirt_driver_one_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_one_la_SOURCES = $(ONE_DRIVER_SOURCES)
endif


655
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
656

657 658
$(ESX_DRIVER_GENERATED): $(srcdir)/esx/esx_vi_generator.input $(srcdir)/esx/esx_vi_generator.py
	-srcdir=$(srcdir) $(srcdir)/esx/esx_vi_generator.py
D
Daniel Veillard 已提交
659

660 661 662 663 664
if WITH_ESX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_esx.la
else
noinst_LTLIBRARIES += libvirt_driver_esx.la
665
libvirt_la_BUILT_LIBADD += libvirt_driver_esx.la
666
endif
667 668
libvirt_driver_esx_la_CFLAGS = $(LIBCURL_CFLAGS) \
		-I@top_srcdir@/src/conf
669 670
libvirt_driver_esx_la_LDFLAGS =
libvirt_driver_esx_la_LIBADD = $(LIBCURL_LIBS)
671 672 673 674
if WITH_DRIVER_MODULES
libvirt_driver_esx_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_esx_la_SOURCES = $(ESX_DRIVER_SOURCES)
675
libvirt_driver_esx_la_DEPENDENCIES = $(ESX_DRIVER_GENERATED)
676 677
endif

678
if WITH_NETWORK
679 680 681
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_network.la
else
682
noinst_LTLIBRARIES += libvirt_driver_network.la
683
# Stateful, so linked to daemon instead
684
#libvirt_la_BUILT_LIBADD += libvirt_driver_network.la
685
endif
686 687
libvirt_driver_network_la_CFLAGS = \
		-I@top_srcdir@/src/conf
688 689 690
if WITH_DRIVER_MODULES
libvirt_driver_network_la_LDFLAGS = -module -avoid-version
endif
691
libvirt_driver_network_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
692
endif
693 694 695 696
EXTRA_DIST += network/default.xml



697

D
Daniel Veillard 已提交
698
if WITH_NETCF
699 700 701 702
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_interface.la
else
noinst_LTLIBRARIES += libvirt_driver_interface.la
703
libvirt_la_BUILT_LIBADD += libvirt_driver_interface.la
704
endif
705 706
libvirt_driver_interface_la_CFLAGS = $(NETCF_CFLAGS) \
		-I@top_srcdir@/src/conf
707 708
libvirt_driver_interface_la_LDFLAGS =
libvirt_driver_interface_la_LIBADD = $(NETCF_LIBS)
709 710 711 712
if WITH_DRIVER_MODULES
libvirt_driver_interface_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_interface_la_SOURCES = $(INTERFACE_DRIVER_SOURCES)
D
Daniel Veillard 已提交
713 714
endif

D
Daniel P. Berrange 已提交
715
if WITH_SECRETS
716 717 718 719
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_secret.la
else
noinst_LTLIBRARIES += libvirt_driver_secret.la
720
# Stateful, so linked to daemon instead
721
#libvirt_la_BUILT_LIBADD += libvirt_driver_secret.la
722
endif
723 724
libvirt_driver_secret_la_CFLAGS = \
		-I@top_srcdir@/src/conf
725
if WITH_DRIVER_MODULES
726 727
libvirt_driver_secret_la_LDFLAGS = -module -avoid-version
libvirt_driver_secret_la_LIBADD = ../gnulib/lib/libgnu.la
728 729
endif
libvirt_driver_secret_la_SOURCES = $(SECRET_DRIVER_SOURCES)
D
Daniel P. Berrange 已提交
730
endif
731

732 733
# Needed to keep automake quiet about conditionals
libvirt_driver_storage_la_SOURCES =
734 735
libvirt_driver_storage_la_CFLAGS = \
		-I@top_srcdir@/src/conf
736
libvirt_driver_storage_la_LDFLAGS =
737
libvirt_driver_storage_la_LIBADD =
738
if WITH_STORAGE_DIR
739 740 741
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_storage.la
else
742
noinst_LTLIBRARIES += libvirt_driver_storage.la
743
# Stateful, so linked to daemon instead
744
#libvirt_la_BUILT_LIBADD += libvirt_driver_storage.la
745 746
endif
if WITH_DRIVER_MODULES
747
libvirt_driver_storage_la_LDFLAGS += -module -avoid-version
748
endif
749 750
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SOURCES)
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_FS_SOURCES)
751 752
endif

753
if WITH_STORAGE_LVM
754
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
755 756
endif

757
if WITH_STORAGE_ISCSI
758
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
759 760
endif

761 762 763 764
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
765 766 767
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
768
libvirt_driver_storage_la_LIBADD += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
769 770
endif

771
if WITH_STORAGE_DISK
772
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
773
endif
774

775 776 777 778 779 780 781
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
782
#libvirt_la_BUILT_LIBADD += libvirt_driver_nodedev.la
783 784 785
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

786 787
libvirt_driver_nodedev_la_CFLAGS = \
		-I@top_srcdir@/src/conf
788
libvirt_driver_nodedev_la_LDFLAGS =
789
libvirt_driver_nodedev_la_LIBADD =
790 791 792
if HAVE_HAL
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
793
libvirt_driver_nodedev_la_LIBADD += $(HAL_LIBS)
794
endif
795 796
if HAVE_UDEV
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
797
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
798
libvirt_driver_nodedev_la_LIBADD += $(UDEV_LIBS) $(PCIACCESS_LIBS)
799
endif
800 801 802 803 804 805 806

if WITH_DRIVER_MODULES
libvirt_driver_nodedev_la_LDFLAGS += -module -avoid-version
endif
endif


807 808 809 810
if WITH_NWFILTER
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_nwfilter.la
else
811
libvirt_la_BUILT_LIBADD += libvirt_driver_nwfilter.la
812 813
noinst_LTLIBRARIES += libvirt_driver_nwfilter.la
endif
814
libvirt_driver_nwfilter_la_CFLAGS = $(LIBPCAP_CFLAGS) \
815
		-I@top_srcdir@/src/conf
816 817
libvirt_driver_nwfilter_la_LDFLAGS =
libvirt_driver_nwfilter_la_LIBADD = $(LIBPCAP_LIBS)
818
if WITH_DRIVER_MODULES
819 820
libvirt_driver_nwfilter_la_LDFLAGS += -module -avoid-version
libvirt_driver_nwfilter_la_LIBADD += ../gnulib/lib/libgnu.la
821 822 823 824 825
endif
libvirt_driver_nwfilter_la_SOURCES = $(NWFILTER_DRIVER_SOURCES)
endif


826 827
libvirt_driver_security_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
noinst_LTLIBRARIES += libvirt_driver_security.la
828
libvirt_la_BUILT_LIBADD += libvirt_driver_security.la
829 830
libvirt_driver_security_la_CFLAGS = \
		-I@top_srcdir@/src/conf
J
Jamie Strandboge 已提交
831
libvirt_driver_security_la_LDFLAGS =
832
libvirt_driver_security_la_LIBADD =
833 834
if WITH_SECDRIVER_SELINUX
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
J
Jim Fehlig 已提交
835
libvirt_driver_security_la_CFLAGS += $(SELINUX_CFLAGS)
836
libvirt_driver_security_la_LIBADD += $(SELINUX_LIBS)
837
endif
J
Jamie Strandboge 已提交
838 839 840
if WITH_SECDRIVER_APPARMOR
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
libvirt_driver_security_la_CFLAGS += $(APPARMOR_CFLAGS)
841
libvirt_driver_security_la_LIBADD += $(APPARMOR_LIBS)
J
Jamie Strandboge 已提交
842
endif
843

844 845 846 847 848 849 850
# Add all conditional sources just in case...
EXTRA_DIST +=							\
		$(TEST_DRIVER_SOURCES)				\
		$(REMOTE_DRIVER_SOURCES)			\
		$(XEN_DRIVER_SOURCES)				\
		$(QEMU_DRIVER_SOURCES)				\
		$(LXC_DRIVER_SOURCES)				\
851
		$(UML_DRIVER_SOURCES)				\
D
Daniel Veillard 已提交
852
		$(ONE_DRIVER_SOURCES)				\
853
		$(OPENVZ_DRIVER_SOURCES)			\
854
		$(PHYP_DRIVER_SOURCES)				\
855
		$(VBOX_DRIVER_SOURCES)				\
856
		$(XENAPI_DRIVER_SOURCES)			\
857
		$(ESX_DRIVER_SOURCES)				\
858
		$(ESX_DRIVER_EXTRA_DIST)			\
859
		$(NETWORK_DRIVER_SOURCES)			\
860
		$(INTERFACE_DRIVER_SOURCES)			\
861 862 863 864
		$(STORAGE_DRIVER_SOURCES)			\
		$(STORAGE_DRIVER_FS_SOURCES)			\
		$(STORAGE_DRIVER_LVM_SOURCES)			\
		$(STORAGE_DRIVER_ISCSI_SOURCES)			\
865
		$(STORAGE_DRIVER_SCSI_SOURCES)			\
D
Dave Allan 已提交
866
		$(STORAGE_DRIVER_MPATH_SOURCES)			\
867 868 869
		$(STORAGE_DRIVER_DISK_SOURCES)			\
		$(NODE_DEVICE_DRIVER_SOURCES)			\
		$(NODE_DEVICE_DRIVER_HAL_SOURCES)		\
870
		$(NODE_DEVICE_DRIVER_UDEV_SOURCES)		\
871
		$(NWFILTER_DRIVER_SOURCES)			\
872
		$(SECURITY_DRIVER_SELINUX_SOURCES)		\
J
Jamie Strandboge 已提交
873
		$(SECURITY_DRIVER_APPARMOR_SOURCES)		\
D
Daniel P. Berrange 已提交
874
		$(SECRET_DRIVER_SOURCES)			\
875
		$(VBOX_DRIVER_EXTRA_DIST)
876

877 878 879 880
check-local: augeas-check

.PHONY: augeas-check
augeas-check:
881
if WITH_QEMU
882
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
883 884 885 886 887
	    '$(AUGPARSE)' -I $(srcdir)/qemu \
	    $(srcdir)/qemu/test_libvirtd_qemu.aug; \
	fi
endif
if WITH_LXC
888
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
889 890 891 892 893
	    '$(AUGPARSE)' -I $(srcdir)/lxc \
	    $(srcdir)/lxc/test_libvirtd_lxc.aug; \
	fi
endif

894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
#
# 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.
#

913
if WITH_DRIVER_MODULES
914
USED_SYM_FILES += libvirt_driver_modules.syms
915
endif
916 917

if WITH_BRIDGE
918
USED_SYM_FILES += libvirt_bridge.syms
919
endif
920 921

if WITH_LINUX
922
USED_SYM_FILES += libvirt_linux.syms
923
endif
924

925
if WITH_MACVTAP
926
USED_SYM_FILES += libvirt_macvtap.syms
927
endif
928

929 930 931 932
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

933 934 935 936
if WITH_NWFILTER
USED_SYM_FILES += libvirt_nwfilter.syms
endif

937 938 939 940 941
EXTRA_DIST += \
  libvirt_public.syms		\
  libvirt_private.syms		\
  libvirt_driver_modules.syms	\
  libvirt_bridge.syms		\
942
  libvirt_linux.syms		\
943
  libvirt_macvtap.syms		\
944 945
  libvirt_daemon.syms		\
  libvirt_nwfilter.syms
946

947
BUILT_SOURCES += libvirt.syms libvirt.def
948

949
libvirt.syms: libvirt_public.syms $(USED_SYM_FILES)
950 951 952 953 954 955
	$(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 && \
956
	for file in $(USED_SYM_FILES); do \
957
	    cat $(srcdir)/$$file >>$@-tmp; \
958 959 960
	done && \
	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp && \
	chmod a-w $@-tmp && \
961
	mv $@-tmp libvirt.syms
962

963 964 965 966 967 968 969
libvirt.def: libvirt.syms
	$(AM_V_GEN)rm -f -- $@-tmp $@ ; \
	printf 'EXPORTS\n' > $@-tmp && \
	sed -e '/^$$/d; /#/d; /:/d; /\}/d; /\*/d; /LIBVIRT_/d; s/[ \t]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \
	chmod a-w $@-tmp && \
	mv $@-tmp libvirt.def

970 971
# Empty source list - it merely links a bunch of convenience libs together
libvirt_la_SOURCES =
972
libvirt_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE) \
973
                     -version-info $(LIBVIRT_VERSION_INFO) \
974
                    $(COVERAGE_CFLAGS:-f%=-Wc,-f%) \
975
		    $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
976
libvirt_la_BUILT_LIBADD += ../gnulib/lib/libgnu.la
977
libvirt_la_LIBADD += $(LIBXML_LIBS) \
978
		    $(LIBPCAP_LIBS) \
979
		    $(DRIVER_MODULE_LIBS) \
980
		    $(CYGWIN_EXTRA_LIBADD)
981
libvirt_la_CFLAGS = $(COVERAGE_CFLAGS) -DIN_LIBVIRT
982 983 984 985 986 987
# 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)
988

989 990 991
# 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.
992
noinst_LTLIBRARIES += libvirt_test.la
993

994
# Remove version script from convenience library
995 996
test_LDFLAGS =						\
  $$(echo '$(libvirt_la_LDFLAGS)'			\
997
     |sed 's!$(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE)!!'	\
998
     |sed 's!-version-info $(LIBVIRT_VERSION_INFO)!!')
999 1000 1001 1002 1003 1004 1005

# 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)
libvirt_test_la_LDFLAGS = $(test_LDFLAGS)
libvirt_test_la_CFLAGS = $(COVERAGE_CFLAGS)

1006

1007 1008
libexec_PROGRAMS =

1009
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
1010
if WITH_LIBVIRTD
1011
libexec_PROGRAMS += libvirt_parthelper
1012

1013
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
E
Eric Blake 已提交
1014
libvirt_parthelper_LDFLAGS = $(WARN_LDFLAGS) $(COVERAGE_LDFLAGS)
1015 1016
libvirt_parthelper_LDADD = $(LIBPARTED_LIBS)
libvirt_parthelper_CFLAGS =  $(LIBPARTED_CFLAGS)
R
Richard W.M. Jones 已提交
1017
endif
1018
endif
1019 1020
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

1021

1022 1023 1024 1025 1026 1027
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

libvirt_lxc_SOURCES =						\
		$(LXC_CONTROLLER_SOURCES)			\
1028
		$(UTIL_SOURCES)					\
1029 1030
		$(NODE_INFO_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
1031
		$(DOMAIN_CONF_SOURCES)				\
1032 1033
		$(CPU_CONF_SOURCES)				\
		$(NWFILTER_PARAM_CONF_SOURCES)
E
Eric Blake 已提交
1034
libvirt_lxc_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDFLAGS)
1035 1036
libvirt_lxc_LDADD = $(CAPNG_LIBS) $(YAJL_LIBS) \
		$(LIBXML_LIBS) $(NUMACTL_LIBS) $(LIB_PTHREAD) \
1037
		../gnulib/lib/libgnu.la
1038 1039 1040 1041
libvirt_lxc_CFLAGS =				\
		$(LIBPARTED_CFLAGS)		\
		$(NUMACTL_CFLAGS)		\
		$(CAPNG_CFLAGS)			\
1042
		$(YAJL_CFLAGS)			\
1043
		-I@top_srcdir@/src/conf
1044 1045 1046 1047
endif
endif
EXTRA_DIST += $(LXC_CONTROLLER_SOURCES)

J
Jamie Strandboge 已提交
1048 1049 1050 1051 1052 1053
if WITH_SECDRIVER_APPARMOR
if WITH_LIBVIRTD
libexec_PROGRAMS += virt-aa-helper

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

E
Eric Blake 已提交
1054
virt_aa_helper_LDFLAGS = $(WARN_LDFLAGS)
J
Jamie Strandboge 已提交
1055
virt_aa_helper_LDADD =						\
1056
		$(LIBXML_LIBS)					\
C
Chris Lalancette 已提交
1057 1058 1059
		libvirt_conf.la					\
		libvirt_util.la					\
		../gnulib/lib/libgnu.la
J
Jamie Strandboge 已提交
1060 1061 1062 1063 1064 1065 1066
virt_aa_helper_CFLAGS =						\
		-I@top_srcdir@/src/conf				\
		-I@top_srcdir@/src/security
endif
endif
EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1067
install-data-local:
1068 1069 1070 1071 1072 1073
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/images"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/boot"
if WITH_QEMU
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/qemu"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/qemu"
1074
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu"
1075
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/qemu"
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
endif
if WITH_LXC
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/lxc"
endif
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"
1087
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/dnsmasq"
1088
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/network"
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
	$(MKDIR_P) "$(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart"
	$(INSTALL_DATA) $(srcdir)/network/default.xml \
	  $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
	test -z "$(UUID)" || \
	  sed -i -e "s,</name>,</name>\n  <uuid>$(UUID)</uuid>," \
	    $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
	test -e $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml || \
           ln -s ../default.xml \
	    $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
endif

uninstall-local::
	rmdir "$(DESTDIR)$(localstatedir)/cache/libvirt" ||:
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/images" ||:
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/boot" ||:
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" ||:
1109
endif
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
if WITH_LXC
	rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lxc" ||:
	rmdir "$(DESTDIR)$(localstatedir)/run/libvirt/lxc" ||:
endif
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 已提交
1127

1128
CLEANFILES = *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda *.i *.s
1129
DISTCLEANFILES = $(BUILT_SOURCES)