Makefile.am 32.1 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/json.c util/json.h				\
63
		util/logging.c util/logging.h			\
64
		util/macvtap.c util/macvtap.h			\
65 66
		util/memory.c util/memory.h			\
		util/pci.c util/pci.h				\
67
		util/processinfo.c util/processinfo.h		\
68
		util/hostusb.c util/hostusb.h			\
69
		util/network.c util/network.h			\
70
		util/interface.c util/interface.h		\
71 72
		util/qparams.c util/qparams.h			\
		util/stats_linux.c util/stats_linux.h		\
73
		util/storage_file.c util/storage_file.h		\
74 75 76 77 78 79 80 81 82
		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
83

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


94
# XML configuration format handling sources
95 96
# Domain driver generic impl APIs
DOMAIN_CONF_SOURCES =						\
97 98 99 100 101
		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
102 103

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

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

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

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

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

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

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

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

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

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

# Mock driver, covering domains, storage, networks, etc
TEST_DRIVER_SOURCES =						\
161
		test/test_driver.c test/test_driver.h
162 163 164 165 166



# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
167 168 169 170 171 172 173 174
		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
175
if WITH_XEN_INOTIFY
176
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
177
endif
178 179

LXC_DRIVER_SOURCES =						\
180 181 182
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_driver.c lxc/lxc_driver.h		\
183
		lxc/veth.c lxc/veth.h
184

185
LXC_CONTROLLER_SOURCES =					\
186 187 188
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_controller.c				\
189
		lxc/veth.c lxc/veth.h
190

J
Jamie Strandboge 已提交
191 192 193
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES =			\
		security/virt-aa-helper.c

194 195 196
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

197
OPENVZ_DRIVER_SOURCES =						\
198 199
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
200

201 202 203
VBOX_DRIVER_SOURCES =						\
        vbox/vbox_XPCOMCGlue.c vbox/vbox_XPCOMCGlue.h		\
        vbox/vbox_driver.c vbox/vbox_driver.h			\
204
        vbox/vbox_V2_2.c vbox/vbox_CAPI_v2_2.h			\
205 206
        vbox/vbox_V3_0.c vbox/vbox_CAPI_v3_0.h			\
        vbox/vbox_V3_1.c vbox/vbox_CAPI_v3_1.h
207

208 209
VBOX_DRIVER_EXTRA_DIST = vbox/vbox_tmpl.c vbox/README

210
QEMU_DRIVER_SOURCES =						\
211
		qemu/qemu_conf.c qemu/qemu_conf.h		\
212
		qemu/qemu_monitor.c qemu/qemu_monitor.h		\
213 214
		qemu/qemu_monitor_text.c			\
		qemu/qemu_monitor_text.h			\
D
Daniel P. Berrange 已提交
215 216 217
		qemu/qemu_monitor_json.c			\
		qemu/qemu_monitor_json.h			\
		qemu/qemu_driver.c qemu/qemu_driver.h		\
218
		qemu/qemu_bridge_filter.c 			\
219 220
		qemu/qemu_bridge_filter.h			\
		qemu/qemu_security_stacked.h			\
221 222 223
		qemu/qemu_security_stacked.c			\
		qemu/qemu_security_dac.h			\
		qemu/qemu_security_dac.c
R
Richard W.M. Jones 已提交
224

225 226
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
227
		xenapi/xenapi_driver_private.h					\
228 229
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

230
UML_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
231 232
		uml/uml_conf.c uml/uml_conf.h			\
		uml/uml_driver.c uml/uml_driver.h
233

234 235 236 237 238 239
ONE_DRIVER_SOURCES =						\
		./opennebula/one_conf.c				\
		./opennebula/one_conf.h				\
		./opennebula/one_driver.c			\
		./opennebula/one_driver.h			\
		./opennebula/one_client.c			\
240
		./opennebula/one_client.h
D
Daniel Veillard 已提交
241

242
ESX_DRIVER_SOURCES =						\
243
		esx/esx_private.h						\
244
		esx/esx_driver.c esx/esx_driver.h		\
245 246 247 248 249
		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 已提交
250
		esx/esx_nwfilter_driver.c esx/esx_nwfilter_driver.h		\
251 252
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
253 254 255 256
		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

257
ESX_DRIVER_GENERATED =							\
258 259
		esx/esx_vi_methods.generated.c				\
		esx/esx_vi_methods.generated.h				\
260 261 262 263 264 265 266 267 268 269 270 271 272
		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)

273
NETWORK_DRIVER_SOURCES =					\
274
		network/bridge_driver.h network/bridge_driver.c
275

276
INTERFACE_DRIVER_SOURCES =					\
277
		interface/netcf_driver.h interface/netcf_driver.c
278

279
SECRET_DRIVER_SOURCES =						\
280
		secret/secret_driver.h secret/secret_driver.c
281

282
# Storage backend specific impls
283
STORAGE_DRIVER_SOURCES =					\
284 285
		storage/storage_driver.h storage/storage_driver.c		\
		storage/storage_backend.h storage/storage_backend.c
286 287

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

290
STORAGE_DRIVER_LVM_SOURCES =					\
291 292
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
293 294

STORAGE_DRIVER_ISCSI_SOURCES =					\
295
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
296

297
STORAGE_DRIVER_SCSI_SOURCES =					\
298
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
299

D
Dave Allan 已提交
300
STORAGE_DRIVER_MPATH_SOURCES =					\
301
		storage/storage_backend_mpath.h storage/storage_backend_mpath.c
D
Dave Allan 已提交
302

303
STORAGE_DRIVER_DISK_SOURCES =					\
304
		storage/storage_backend_disk.h storage/storage_backend_disk.c
305 306

STORAGE_HELPER_DISK_SOURCES =					\
307
		storage/parthelper.c
308

309 310 311
# Network filters
NWFILTER_DRIVER_SOURCES =					\
		nwfilter/nwfilter_driver.h nwfilter/nwfilter_driver.c	\
312 313 314
		nwfilter/nwfilter_gentech_driver.c			\
		nwfilter/nwfilter_gentech_driver.h			\
		nwfilter/nwfilter_ebiptables_driver.c			\
315 316 317
		nwfilter/nwfilter_ebiptables_driver.h			\
		nwfilter/nwfilter_learnipaddr.c				\
		nwfilter/nwfilter_learnipaddr.h
318

319

320
# Security framework and drivers for various models
321
SECURITY_DRIVER_SOURCES =					\
322
		security/security_driver.h security/security_driver.c
323

324
SECURITY_DRIVER_SELINUX_SOURCES =				\
325
		security/security_selinux.h security/security_selinux.c
326

J
Jamie Strandboge 已提交
327 328 329
SECURITY_DRIVER_APPARMOR_SOURCES =				\
		security/security_apparmor.h security/security_apparmor.c

330

331
NODE_DEVICE_DRIVER_SOURCES =					\
332 333 334
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
335 336

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
337
		node_device/node_device_hal.c			\
338
		node_device/node_device_hal.h
339

340
NODE_DEVICE_DRIVER_UDEV_SOURCES =				\
D
Daniel Veillard 已提交
341 342
		node_device/node_device_udev.c			\
		node_device/node_device_udev.h
343

J
Jiri Denemark 已提交
344 345 346 347 348
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
349

J
Jiri Denemark 已提交
350 351 352
pkgdata_DATA =	cpu/cpu_map.xml

EXTRA_DIST += 	$(pkgdata_DATA)
353

354 355 356 357 358 359
#########################
#
# Build up list of libvirt.la source files based on configure conditions
#
# First deal with sources usable in non-daemon context

360 361 362 363
noinst_LTLIBRARIES = libvirt_util.la
libvirt_la_LIBADD = libvirt_util.la
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
364 365
libvirt_util_la_CFLAGS =  $(CAPNG_CFLAGS) $(YAJL_CFLAGS)
libvirt_util_la_LDFLAGS =  $(CAPNG_LIBS) $(YAJL_LIBS)
366

367 368 369 370 371 372 373

noinst_LTLIBRARIES += libvirt_conf.la
libvirt_la_LIBADD += libvirt_conf.la
libvirt_conf_la_SOURCES = $(CONF_SOURCES)
libvirt_conf_la_CFLAGS =
libvirt_conf_la_LDFLAGS =

J
Jiri Denemark 已提交
374 375 376 377 378 379
noinst_LTLIBRARIES += libvirt_cpu.la
libvirt_la_LIBADD += libvirt_cpu.la
libvirt_cpu_la_CFLAGS = \
		-I@top_srcdir@/src/conf
libvirt_cpu_la_SOURCES = $(CPU_SOURCES)

380

381 382
noinst_LTLIBRARIES += libvirt_driver.la
libvirt_la_LIBADD += libvirt_driver.la
383
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
384

385 386
libvirt_driver_la_CFLAGS = $(NUMACTL_CFLAGS)	\
		-I@top_srcdir@/src/conf
387
libvirt_driver_la_LDFLAGS = $(NUMACTL_LIBS)
388

389
USED_SYM_FILES = libvirt_private.syms
390

391
if WITH_TEST
392 393 394
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_test.la
else
395 396
noinst_LTLIBRARIES += libvirt_driver_test.la
libvirt_la_LIBADD += libvirt_driver_test.la
397
endif
398 399
libvirt_driver_test_la_CFLAGS = \
		-I@top_srcdir@/src/conf
400 401 402
if WITH_DRIVER_MODULES
libvirt_driver_test_la_LDFLAGS = -module -avoid-version
endif
403
libvirt_driver_test_la_SOURCES = $(TEST_DRIVER_SOURCES)
404 405 406
endif

if WITH_REMOTE
407 408 409
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_remote.la
else
410 411
noinst_LTLIBRARIES += libvirt_driver_remote.la
libvirt_la_LIBADD += libvirt_driver_remote.la
412
endif
413 414
libvirt_driver_remote_la_CFLAGS =				\
		$(GNUTLS_CFLAGS)				\
415
		$(SASL_CFLAGS)					\
416
		-I@top_srcdir@/src/conf
417 418 419
libvirt_driver_remote_la_LDFLAGS =				\
		$(GNUTLS_LIBS)					\
		$(SASL_LIBS)
420 421 422
if WITH_DRIVER_MODULES
libvirt_driver_remote_la_LDFLAGS += -module -avoid-version
endif
423
libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES)
424 425 426 427 428 429

if HAVE_RPCGEN
#
# Maintainer-only target for re-generating the derived .c/.h source
# files, which are actually derived from the .x file.
#
430
# For committing protocol changes to GIT, the GLIBC rpcgen *must*
431 432 433 434 435 436 437 438 439 440
# 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 已提交
441 442
	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
443 444 445 446 447 448 449 450 451 452 453 454 455
	(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
456 457 458
endif

if WITH_XEN
459 460 461
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xen.la
else
462 463
noinst_LTLIBRARIES += libvirt_driver_xen.la
libvirt_la_LIBADD += libvirt_driver_xen.la
464
endif
465 466 467
libvirt_driver_xen_la_CFLAGS = 					\
		$(XEN_CFLAGS)					\
		-I@top_srcdir@/src/conf
468
libvirt_driver_xen_la_LDFLAGS = $(XEN_LIBS)
469 470 471
if WITH_DRIVER_MODULES
libvirt_driver_xen_la_LDFLAGS += -module -avoid-version
endif
472
libvirt_driver_xen_la_SOURCES = $(XEN_DRIVER_SOURCES)
473 474
endif

475 476 477 478 479 480 481
if WITH_PHYP
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_phyp.la
else
noinst_LTLIBRARIES += libvirt_driver_phyp.la
libvirt_la_LIBADD += libvirt_driver_phyp.la
endif
482
libvirt_driver_phyp_la_LDFLAGS = $(LIBSSH2_LIBS)
483 484
libvirt_driver_phyp_la_CFLAGS = $(LIBSSH2_CFLAGS) \
		-I@top_srcdir@/src/conf
485 486 487
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
endif

488
if WITH_OPENVZ
489 490 491
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_openvz.la
else
492 493
noinst_LTLIBRARIES += libvirt_driver_openvz.la
libvirt_la_LIBADD += libvirt_driver_openvz.la
494
endif
495 496
libvirt_driver_openvz_la_CFLAGS = \
		-I@top_srcdir@/src/conf
497 498 499
if WITH_DRIVER_MODULES
libvirt_driver_openvz_la_LDFLAGS = -module -avoid-version
endif
500
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
501 502
endif

503 504 505 506 507 508 509
if WITH_VBOX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_vbox.la
else
noinst_LTLIBRARIES += libvirt_driver_vbox.la
libvirt_la_LIBADD += libvirt_driver_vbox.la
endif
510 511
libvirt_driver_vbox_la_CFLAGS = \
		-I@top_srcdir@/src/conf
512 513 514
if WITH_DRIVER_MODULES
libvirt_driver_vbox_la_LDFLAGS = -module -avoid-version
endif
515
libvirt_driver_vbox_la_LIBADD = $(DLOPEN_LIBS)
516 517 518
libvirt_driver_vbox_la_SOURCES = $(VBOX_DRIVER_SOURCES)
endif

519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
if WITH_XENAPI
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xenapi.la
else
noinst_LTLIBRARIES += libvirt_driver_xenapi.la
libvirt_la_LIBADD += libvirt_driver_xenapi.la
endif
libvirt_driver_xenapi_la_CFLAGS = $(LIBXENSERVER_CFLAGS) $(LIBCURL_CFLAGS) \
		-I@top_srcdir@/src/conf
libvirt_driver_xenapi_la_LDFLAGS = $(LIBXENSERVER_LIBS) $(LIBCURL_LIBS)
if WITH_DRIVER_MODULES
libvirt_driver_xenapi_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_xenapi_la_SOURCES = $(XENAPI_DRIVER_SOURCES)
endif

535
if WITH_QEMU
536 537 538
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_qemu.la
else
539
noinst_LTLIBRARIES += libvirt_driver_qemu.la
540 541
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_qemu.la
542
endif
543 544
libvirt_driver_qemu_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
545
libvirt_driver_qemu_la_LDFLAGS = $(NUMACTL_LIBS)
546 547 548
if WITH_DRIVER_MODULES
libvirt_driver_qemu_la_LDFLAGS += -module -avoid-version
endif
549
libvirt_driver_qemu_la_SOURCES = $(QEMU_DRIVER_SOURCES)
550

A
Amy Griffis 已提交
551
conf_DATA += qemu/qemu.conf
552

553 554
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
555

556
endif
557 558
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug qemu/test_libvirtd_qemu.aug

559 560

if WITH_LXC
561 562 563
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_lxc.la
else
564
noinst_LTLIBRARIES += libvirt_driver_lxc.la
565 566
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_lxc.la
567
endif
568 569
libvirt_driver_lxc_la_CFLAGS = \
		-I@top_srcdir@/src/conf
570 571 572
if WITH_DRIVER_MODULES
libvirt_driver_lxc_la_LDFLAGS = -module -avoid-version
endif
573
libvirt_driver_lxc_la_SOURCES = $(LXC_DRIVER_SOURCES)
A
Amy Griffis 已提交
574 575 576

conf_DATA += lxc/lxc.conf

577 578 579
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

580
endif
581
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
582

583
if WITH_UML
584 585 586
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_uml.la
else
587 588 589
noinst_LTLIBRARIES += libvirt_driver_uml.la
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_uml.la
590
endif
591 592
libvirt_driver_uml_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
593 594 595 596
libvirt_driver_uml_la_LDFLAGS = $(NUMACTL_LIBS)
if WITH_DRIVER_MODULES
libvirt_driver_uml_la_LDFLAGS += -module -avoid-version
endif
597 598
libvirt_driver_uml_la_SOURCES = $(UML_DRIVER_SOURCES)
endif
599

D
Daniel Veillard 已提交
600 601 602 603 604 605 606 607
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
#libvirt_la_LIBADD  += libvirt_driver_one.la
endif
608 609
libvirt_driver_one_la_CFLAGS = $(XMLRPC_CFLAGS) \
		-I@top_srcdir@/src/conf
D
Daniel P. Berrange 已提交
610
libvirt_driver_one_la_LDFLAGS = $(XMLRPC_LIBS)
D
Daniel Veillard 已提交
611 612 613 614 615 616 617 618
#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


619
BUILT_SOURCES += $(ESX_DRIVER_GENERATED)
D
Daniel Veillard 已提交
620

621 622
$(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 已提交
623

624 625 626 627 628 629 630
if WITH_ESX
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_esx.la
else
noinst_LTLIBRARIES += libvirt_driver_esx.la
libvirt_la_LIBADD += libvirt_driver_esx.la
endif
631 632
libvirt_driver_esx_la_CFLAGS = $(LIBCURL_CFLAGS) \
		-I@top_srcdir@/src/conf
633 634 635 636 637
libvirt_driver_esx_la_LDFLAGS = $(LIBCURL_LIBS)
if WITH_DRIVER_MODULES
libvirt_driver_esx_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_esx_la_SOURCES = $(ESX_DRIVER_SOURCES)
638
libvirt_driver_esx_la_DEPENDENCIES = $(ESX_DRIVER_GENERATED)
639 640
endif

641
if WITH_NETWORK
642 643 644
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_network.la
else
645
noinst_LTLIBRARIES += libvirt_driver_network.la
646 647
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_network.la
648
endif
649 650
libvirt_driver_network_la_CFLAGS = \
		-I@top_srcdir@/src/conf
651 652 653
if WITH_DRIVER_MODULES
libvirt_driver_network_la_LDFLAGS = -module -avoid-version
endif
654
libvirt_driver_network_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
655
endif
656 657 658 659
EXTRA_DIST += network/default.xml



660

D
Daniel Veillard 已提交
661
if WITH_NETCF
662 663 664 665 666 667
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_interface.la
else
noinst_LTLIBRARIES += libvirt_driver_interface.la
libvirt_la_LIBADD += libvirt_driver_interface.la
endif
668 669 670
libvirt_driver_interface_la_CFLAGS = $(NETCF_CFLAGS) \
		-I@top_srcdir@/src/conf
libvirt_driver_interface_la_LDFLAGS = $(NETCF_LIBS)
671 672 673 674
if WITH_DRIVER_MODULES
libvirt_driver_interface_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_interface_la_SOURCES = $(INTERFACE_DRIVER_SOURCES)
D
Daniel Veillard 已提交
675 676
endif

D
Daniel P. Berrange 已提交
677
if WITH_SECRETS
678 679 680 681
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_secret.la
else
noinst_LTLIBRARIES += libvirt_driver_secret.la
682 683
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_secret.la
684
endif
685 686
libvirt_driver_secret_la_CFLAGS = \
		-I@top_srcdir@/src/conf
687
if WITH_DRIVER_MODULES
688
libvirt_driver_secret_la_LDFLAGS = -module -avoid-version ../gnulib/lib/libgnu.la
689 690
endif
libvirt_driver_secret_la_SOURCES = $(SECRET_DRIVER_SOURCES)
D
Daniel P. Berrange 已提交
691
endif
692

693 694
# Needed to keep automake quiet about conditionals
libvirt_driver_storage_la_SOURCES =
695 696
libvirt_driver_storage_la_CFLAGS = \
		-I@top_srcdir@/src/conf
697
libvirt_driver_storage_la_LDFLAGS =
698
if WITH_STORAGE_DIR
699 700 701
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_storage.la
else
702
noinst_LTLIBRARIES += libvirt_driver_storage.la
703 704
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_storage.la
705 706
endif
if WITH_DRIVER_MODULES
707
libvirt_driver_storage_la_LDFLAGS += -module -avoid-version
708
endif
709 710
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SOURCES)
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_FS_SOURCES)
711 712
endif

713
if WITH_STORAGE_LVM
714
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
715 716
endif

717
if WITH_STORAGE_ISCSI
718
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
719 720
endif

721 722 723 724
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
725 726 727
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
728
libvirt_driver_storage_la_LDFLAGS += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
729 730
endif

731
if WITH_STORAGE_DISK
732
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
733
endif
734

735 736 737 738 739 740 741 742 743 744 745
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
#libvirt_la_LIBADD += libvirt_driver_nodedev.la
endif
libvirt_driver_nodedev_la_SOURCES = $(NODE_DEVICE_DRIVER_SOURCES)

746 747
libvirt_driver_nodedev_la_CFLAGS = \
		-I@top_srcdir@/src/conf
748 749 750 751 752 753
libvirt_driver_nodedev_la_LDFLAGS =
if HAVE_HAL
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
libvirt_driver_nodedev_la_LDFLAGS += $(HAL_LIBS)
endif
754 755
if HAVE_UDEV
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
756 757
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
libvirt_driver_nodedev_la_LDFLAGS += $(UDEV_LIBS) $(PCIACCESS_LIBS)
758
endif
759 760 761 762 763 764 765

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


766 767 768 769 770 771 772
if WITH_NWFILTER
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_nwfilter.la
else
libvirt_la_LIBADD += libvirt_driver_nwfilter.la
noinst_LTLIBRARIES += libvirt_driver_nwfilter.la
endif
773
libvirt_driver_nwfilter_la_CFLAGS = $(LIBPCAP_CFLAGS) \
774
		-I@top_srcdir@/src/conf
775
libvirt_driver_nwfilter_la_LDFLAGS = $(LIBPCAP_LIBS)
776
if WITH_DRIVER_MODULES
777
libvirt_driver_nwfilter_la_LDFLAGS += -module -avoid-version ../gnulib/lib/libgnu.la
778 779 780 781 782
endif
libvirt_driver_nwfilter_la_SOURCES = $(NWFILTER_DRIVER_SOURCES)
endif


783 784 785
libvirt_driver_security_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
noinst_LTLIBRARIES += libvirt_driver_security.la
libvirt_la_LIBADD += libvirt_driver_security.la
786 787
libvirt_driver_security_la_CFLAGS = \
		-I@top_srcdir@/src/conf
J
Jamie Strandboge 已提交
788
libvirt_driver_security_la_LDFLAGS =
789 790
if WITH_SECDRIVER_SELINUX
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
J
Jim Fehlig 已提交
791 792
libvirt_driver_security_la_CFLAGS += $(SELINUX_CFLAGS)
libvirt_driver_security_la_LDFLAGS += $(SELINUX_LIBS)
793
endif
J
Jamie Strandboge 已提交
794 795 796 797 798
if WITH_SECDRIVER_APPARMOR
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_APPARMOR_SOURCES)
libvirt_driver_security_la_CFLAGS += $(APPARMOR_CFLAGS)
libvirt_driver_security_la_LDFLAGS += $(APPARMOR_LIBS)
endif
799

800 801 802 803 804 805 806
# Add all conditional sources just in case...
EXTRA_DIST +=							\
		$(TEST_DRIVER_SOURCES)				\
		$(REMOTE_DRIVER_SOURCES)			\
		$(XEN_DRIVER_SOURCES)				\
		$(QEMU_DRIVER_SOURCES)				\
		$(LXC_DRIVER_SOURCES)				\
807
		$(UML_DRIVER_SOURCES)				\
D
Daniel Veillard 已提交
808
		$(ONE_DRIVER_SOURCES)				\
809
		$(OPENVZ_DRIVER_SOURCES)			\
810
		$(PHYP_DRIVER_SOURCES)				\
811
		$(VBOX_DRIVER_SOURCES)				\
812
		$(XENAPI_DRIVER_SOURCES)			\
813
		$(ESX_DRIVER_SOURCES)				\
814
		$(ESX_DRIVER_EXTRA_DIST)			\
815
		$(NETWORK_DRIVER_SOURCES)			\
816
		$(INTERFACE_DRIVER_SOURCES)			\
817 818 819 820
		$(STORAGE_DRIVER_SOURCES)			\
		$(STORAGE_DRIVER_FS_SOURCES)			\
		$(STORAGE_DRIVER_LVM_SOURCES)			\
		$(STORAGE_DRIVER_ISCSI_SOURCES)			\
821
		$(STORAGE_DRIVER_SCSI_SOURCES)			\
D
Dave Allan 已提交
822
		$(STORAGE_DRIVER_MPATH_SOURCES)			\
823 824 825
		$(STORAGE_DRIVER_DISK_SOURCES)			\
		$(NODE_DEVICE_DRIVER_SOURCES)			\
		$(NODE_DEVICE_DRIVER_HAL_SOURCES)		\
826
		$(NODE_DEVICE_DRIVER_UDEV_SOURCES)		\
827
		$(NWFILTER_DRIVER_SOURCES)			\
828
		$(SECURITY_DRIVER_SELINUX_SOURCES)		\
J
Jamie Strandboge 已提交
829
		$(SECURITY_DRIVER_APPARMOR_SOURCES)		\
D
Daniel P. Berrange 已提交
830
		$(SECRET_DRIVER_SOURCES)			\
831
		$(VBOX_DRIVER_EXTRA_DIST)
832

833 834 835 836
check-local: augeas-check

.PHONY: augeas-check
augeas-check:
837
if WITH_QEMU
838
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
839 840 841 842 843
	    '$(AUGPARSE)' -I $(srcdir)/qemu \
	    $(srcdir)/qemu/test_libvirtd_qemu.aug; \
	fi
endif
if WITH_LXC
844
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
845 846 847 848 849
	    '$(AUGPARSE)' -I $(srcdir)/lxc \
	    $(srcdir)/lxc/test_libvirtd_lxc.aug; \
	fi
endif

850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
#
# 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.
#

869
if WITH_DRIVER_MODULES
870
USED_SYM_FILES += libvirt_driver_modules.syms
871
endif
872 873

if WITH_BRIDGE
874
USED_SYM_FILES += libvirt_bridge.syms
875
endif
876 877

if WITH_LINUX
878
USED_SYM_FILES += libvirt_linux.syms
879
endif
880

881
if WITH_MACVTAP
882
USED_SYM_FILES += libvirt_macvtap.syms
883
endif
884

885 886 887 888
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

889 890 891 892
if WITH_NWFILTER
USED_SYM_FILES += libvirt_nwfilter.syms
endif

893 894 895 896 897
EXTRA_DIST += \
  libvirt_public.syms		\
  libvirt_private.syms		\
  libvirt_driver_modules.syms	\
  libvirt_bridge.syms		\
898
  libvirt_linux.syms		\
899
  libvirt_macvtap.syms		\
900 901
  libvirt_daemon.syms		\
  libvirt_nwfilter.syms
902

903
BUILT_SOURCES += libvirt.syms libvirt.def
904

905
libvirt.syms: libvirt_public.syms $(USED_SYM_FILES)
906 907 908 909 910 911
	$(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 && \
912
	for file in $(USED_SYM_FILES); do \
913
	    cat $(srcdir)/$$file >>$@-tmp; \
914 915 916
	done && \
	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp && \
	chmod a-w $@-tmp && \
917
	mv $@-tmp libvirt.syms
918

919 920 921 922 923 924 925
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

926 927
# Empty source list - it merely links a bunch of convenience libs together
libvirt_la_SOURCES =
928
libvirt_la_LIBADD += \
929
		    $(CYGWIN_EXTRA_LIBADD) ../gnulib/lib/libgnu.la
930
libvirt_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE) \
931
                     -version-info $(LIBVIRT_VERSION_INFO) \
932
                    $(COVERAGE_CFLAGS:-f%=-Wc,-f%) \
933
                    $(LIBXML_LIBS) \
934
                    $(LIBPCAP_LIBS) \
935
		    $(DRIVER_MODULE_LIBS) \
936
		    $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
937
libvirt_la_CFLAGS = $(COVERAGE_CFLAGS) -DIN_LIBVIRT
938
libvirt_la_DEPENDENCIES = $(libvirt_la_LIBADD) $(LIBVIRT_SYMBOL_FILE)
939

940 941 942
# 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.
943
noinst_LTLIBRARIES += libvirt_test.la
944

945
# Remove version script from convenience library
946 947
test_LDFLAGS =						\
  $$(echo '$(libvirt_la_LDFLAGS)'			\
948
     |sed 's!$(VERSION_SCRIPT_FLAGS)$(LIBVIRT_SYMBOL_FILE)!!'	\
949
     |sed 's!-version-info $(LIBVIRT_VERSION_INFO)!!')
950 951 952 953 954 955 956

# 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)

957

958 959
libexec_PROGRAMS =

960
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
961
if WITH_LIBVIRTD
962
libexec_PROGRAMS += libvirt_parthelper
963

964
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
965 966 967
libvirt_parthelper_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDCFLAGS)
libvirt_parthelper_LDADD = $(LIBPARTED_LIBS)
libvirt_parthelper_CFLAGS =  $(LIBPARTED_CFLAGS)
R
Richard W.M. Jones 已提交
968
endif
969
endif
970 971
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

972

973 974 975 976 977 978
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

libvirt_lxc_SOURCES =						\
		$(LXC_CONTROLLER_SOURCES)			\
979
		$(UTIL_SOURCES)					\
980 981
		$(NODE_INFO_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
982
		$(DOMAIN_CONF_SOURCES)				\
983 984
		$(CPU_CONF_SOURCES)				\
		$(NWFILTER_PARAM_CONF_SOURCES)
985
libvirt_lxc_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDCFLAGS) $(CAPNG_LIBS) $(YAJL_LIBS)
986
libvirt_lxc_LDADD = $(LIBXML_LIBS) $(NUMACTL_LIBS) ../gnulib/lib/libgnu.la
987 988 989 990
libvirt_lxc_CFLAGS =				\
		$(LIBPARTED_CFLAGS)		\
		$(NUMACTL_CFLAGS)		\
		$(CAPNG_CFLAGS)			\
991
		$(YAJL_CFLAGS)			\
992
		-I@top_srcdir@/src/conf
993 994 995 996
endif
endif
EXTRA_DIST += $(LXC_CONTROLLER_SOURCES)

J
Jamie Strandboge 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
if WITH_SECDRIVER_APPARMOR
if WITH_LIBVIRTD
libexec_PROGRAMS += virt-aa-helper

virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

virt_aa_helper_LDFLAGS = $(WARN_CFLAGS)
virt_aa_helper_LDADD =						\
		$(WARN_CFLAGS)					\
		$(LIBXML_LIBS)					\
		@top_srcdir@/src/libvirt_conf.la		\
1008 1009
		@top_srcdir@/src/libvirt_util.la		\
		@top_srcdir@/gnulib/lib/libgnu.la
J
Jamie Strandboge 已提交
1010 1011 1012 1013 1014 1015 1016
virt_aa_helper_CFLAGS =						\
		-I@top_srcdir@/src/conf				\
		-I@top_srcdir@/src/security
endif
endif
EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

1017
install-data-local:
1018 1019 1020 1021 1022 1023
	$(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"
1024
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu"
1025
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/qemu"
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
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"
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/run/libvirt/network"
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
	$(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" ||:
1058
endif
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
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 已提交
1076

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