Makefile.am 29.6 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 31
if WITH_NETWORK
UUID=$(shell uuidgen 2>/dev/null)
endif
32

33
lib_LTLIBRARIES = libvirt.la
34

35 36 37
moddir = $(libdir)/libvirt/drivers
mod_LTLIBRARIES =

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

41 42 43 44 45 46
augeasdir = $(datadir)/augeas/lenses
augeas_DATA =

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

47 48
# These files are not related to driver APIs. Simply generic
# helper APIs for various purposes
49
UTIL_SOURCES =							\
50
		util/authhelper.c util/authhelper.h		\
51 52 53 54 55 56 57
		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				\
		util/iptables.c util/iptables.h			\
G
Gerhard Stenzel 已提交
58
		util/ebtables.c util/ebtables.h			\
59
		util/json.c util/json.h				\
60
		util/logging.c util/logging.h			\
61
		util/macvtap.c util/macvtap.h			\
62 63
		util/memory.c util/memory.h			\
		util/pci.c util/pci.h				\
64
		util/processinfo.c util/processinfo.h		\
65
		util/hostusb.c util/hostusb.h			\
66
		util/network.c util/network.h			\
67 68
		util/qparams.c util/qparams.h			\
		util/stats_linux.c util/stats_linux.h		\
69
		util/storage_file.c util/storage_file.h		\
70 71 72 73 74 75 76 77 78
		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
79

80
# Internal generic driver infrastructure
81
NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c
82
DRIVER_SOURCES =						\
83
		driver.c driver.h				\
84 85
		internal.h					\
		datatypes.c datatypes.h				\
86
		$(NODE_INFO_SOURCES)				\
87 88 89
		libvirt.c libvirt_internal.h


90
# XML configuration format handling sources
91 92
# Domain driver generic impl APIs
DOMAIN_CONF_SOURCES =						\
93 94 95 96 97
		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
98 99

# Network driver generic impl APIs
100 101
NETWORK_CONF_SOURCES =                                         \
		conf/network_conf.c conf/network_conf.h
102 103

# Storage driver generic impl APIs
104 105
STORAGE_CONF_SOURCES =                                         \
		conf/storage_conf.h conf/storage_conf.c
106

107
# Interface driver generic impl APIs
108 109
INTERFACE_CONF_SOURCES =                                       \
		conf/interface_conf.c conf/interface_conf.h
110

111
# Secret driver generic impl APIs
112 113 114 115 116 117 118 119 120 121
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

122 123 124
CPU_CONF_SOURCES =						\
		conf/cpu_conf.c conf/cpu_conf.h

125 126 127 128 129 130 131 132
CONF_SOURCES =							\
		$(DOMAIN_CONF_SOURCES)				\
		$(DOMAIN_EVENT_SOURCES)				\
		$(NETWORK_CONF_SOURCES)				\
		$(NODE_DEVICE_CONF_SOURCES)			\
		$(STORAGE_CONF_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
		$(INTERFACE_CONF_SOURCES)			\
133 134
		$(SECRET_CONF_SOURCES)				\
		$(CPU_CONF_SOURCES)
135

136 137
# The remote RPC driver, covering domains, storage, networks, etc
REMOTE_DRIVER_SOURCES =						\
138 139
		gnutls_1_0_compat.h			\
		remote/remote_driver.c remote/remote_driver.h	\
140 141 142 143
		remote/remote_protocol.c			\
		remote/remote_protocol.h

EXTRA_DIST += remote/remote_protocol.x remote/rpcgen_fix.pl
144 145 146

# Mock driver, covering domains, storage, networks, etc
TEST_DRIVER_SOURCES =						\
147
		test/test_driver.c test/test_driver.h
148 149 150 151 152



# Now the Hypervisor specific drivers
XEN_DRIVER_SOURCES =						\
153 154 155 156 157 158 159 160
		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
161
if WITH_XEN_INOTIFY
162
XEN_DRIVER_SOURCES += xen/xen_inotify.c xen/xen_inotify.h
163
endif
164 165

LXC_DRIVER_SOURCES =						\
166 167 168
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_driver.c lxc/lxc_driver.h		\
169
		lxc/veth.c lxc/veth.h
170

171
LXC_CONTROLLER_SOURCES =					\
172 173 174
		lxc/lxc_conf.c lxc/lxc_conf.h			\
		lxc/lxc_container.c lxc/lxc_container.h		\
		lxc/lxc_controller.c				\
175
		lxc/veth.c lxc/veth.h
176

J
Jamie Strandboge 已提交
177 178 179
SECURITY_DRIVER_APPARMOR_HELPER_SOURCES =			\
		security/virt-aa-helper.c

180 181 182
PHYP_DRIVER_SOURCES =						\
		phyp/phyp_driver.c phyp/phyp_driver.h

183
OPENVZ_DRIVER_SOURCES =						\
184 185
		openvz/openvz_conf.c openvz/openvz_conf.h	\
		openvz/openvz_driver.c openvz/openvz_driver.h
186

187 188 189
VBOX_DRIVER_SOURCES =						\
        vbox/vbox_XPCOMCGlue.c vbox/vbox_XPCOMCGlue.h		\
        vbox/vbox_driver.c vbox/vbox_driver.h			\
190
        vbox/vbox_V2_2.c vbox/vbox_CAPI_v2_2.h			\
191 192
        vbox/vbox_V3_0.c vbox/vbox_CAPI_v3_0.h			\
        vbox/vbox_V3_1.c vbox/vbox_CAPI_v3_1.h
193

194 195
VBOX_DRIVER_EXTRA_DIST = vbox/vbox_tmpl.c vbox/README

196
QEMU_DRIVER_SOURCES =						\
197
		qemu/qemu_conf.c qemu/qemu_conf.h		\
198
		qemu/qemu_monitor.c qemu/qemu_monitor.h		\
199 200
		qemu/qemu_monitor_text.c			\
		qemu/qemu_monitor_text.h			\
D
Daniel P. Berrange 已提交
201 202 203
		qemu/qemu_monitor_json.c			\
		qemu/qemu_monitor_json.h			\
		qemu/qemu_driver.c qemu/qemu_driver.h		\
204
		qemu/qemu_bridge_filter.c 			\
205 206
		qemu/qemu_bridge_filter.h			\
		qemu/qemu_security_stacked.h			\
207 208 209
		qemu/qemu_security_stacked.c			\
		qemu/qemu_security_dac.h			\
		qemu/qemu_security_dac.c
R
Richard W.M. Jones 已提交
210

211 212
XENAPI_DRIVER_SOURCES =								\
		xenapi/xenapi_driver.c xenapi/xenapi_driver.h	\
213
		xenapi/xenapi_driver_private.h					\
214 215
		xenapi/xenapi_utils.c xenapi/xenapi_utils.h

216
UML_DRIVER_SOURCES =						\
D
Daniel P. Berrange 已提交
217 218
		uml/uml_conf.c uml/uml_conf.h			\
		uml/uml_driver.c uml/uml_driver.h
219

220 221 222 223 224 225
ONE_DRIVER_SOURCES =						\
		./opennebula/one_conf.c				\
		./opennebula/one_conf.h				\
		./opennebula/one_driver.c			\
		./opennebula/one_driver.h			\
		./opennebula/one_client.c			\
226
		./opennebula/one_client.h
D
Daniel Veillard 已提交
227

228
ESX_DRIVER_SOURCES =						\
229
		esx/esx_private.h						\
230
		esx/esx_driver.c esx/esx_driver.h		\
231 232 233 234 235
		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		\
236 237
		esx/esx_util.c esx/esx_util.h			\
		esx/esx_vi.c esx/esx_vi.h			\
238 239 240 241
		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

242
NETWORK_DRIVER_SOURCES =					\
243
		network/bridge_driver.h network/bridge_driver.c
244

245
INTERFACE_DRIVER_SOURCES =					\
246
		interface/netcf_driver.h interface/netcf_driver.c
247

248
SECRET_DRIVER_SOURCES =						\
249
		secret/secret_driver.h secret/secret_driver.c
250

251
# Storage backend specific impls
252
STORAGE_DRIVER_SOURCES =					\
253 254
		storage/storage_driver.h storage/storage_driver.c		\
		storage/storage_backend.h storage/storage_backend.c
255 256

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

259
STORAGE_DRIVER_LVM_SOURCES =					\
260 261
		storage/storage_backend_logical.h			\
		storage/storage_backend_logical.c
262 263

STORAGE_DRIVER_ISCSI_SOURCES =					\
264
		storage/storage_backend_iscsi.h storage/storage_backend_iscsi.c
265

266
STORAGE_DRIVER_SCSI_SOURCES =					\
267
		storage/storage_backend_scsi.h storage/storage_backend_scsi.c
268

D
Dave Allan 已提交
269
STORAGE_DRIVER_MPATH_SOURCES =					\
270
		storage/storage_backend_mpath.h storage/storage_backend_mpath.c
D
Dave Allan 已提交
271

272
STORAGE_DRIVER_DISK_SOURCES =					\
273
		storage/storage_backend_disk.h storage/storage_backend_disk.c
274 275

STORAGE_HELPER_DISK_SOURCES =					\
276
		storage/parthelper.c
277 278


279
# Security framework and drivers for various models
280
SECURITY_DRIVER_SOURCES =					\
281
		security/security_driver.h security/security_driver.c
282

283
SECURITY_DRIVER_SELINUX_SOURCES =				\
284
		security/security_selinux.h security/security_selinux.c
285

J
Jamie Strandboge 已提交
286 287 288
SECURITY_DRIVER_APPARMOR_SOURCES =				\
		security/security_apparmor.h security/security_apparmor.c

289

290
NODE_DEVICE_DRIVER_SOURCES =					\
291 292 293
		node_device/node_device_driver.c \
		node_device/node_device_driver.h \
		node_device/node_device_linux_sysfs.c
294 295

NODE_DEVICE_DRIVER_HAL_SOURCES =				\
296
		node_device/node_device_hal.c			\
297
		node_device/node_device_hal.h
298

299
NODE_DEVICE_DRIVER_UDEV_SOURCES =				\
D
Daniel Veillard 已提交
300 301
		node_device/node_device_udev.c			\
		node_device/node_device_udev.h
302

J
Jiri Denemark 已提交
303 304 305 306 307
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
308

J
Jiri Denemark 已提交
309 310 311
pkgdata_DATA =	cpu/cpu_map.xml

EXTRA_DIST += 	$(pkgdata_DATA)
312

313 314 315 316 317 318
#########################
#
# Build up list of libvirt.la source files based on configure conditions
#
# First deal with sources usable in non-daemon context

319 320 321 322
noinst_LTLIBRARIES = libvirt_util.la
libvirt_la_LIBADD = libvirt_util.la
libvirt_util_la_SOURCES =					\
		$(UTIL_SOURCES)
323 324
libvirt_util_la_CFLAGS =  $(CAPNG_CFLAGS) $(YAJL_CFLAGS)
libvirt_util_la_LDFLAGS =  $(CAPNG_LIBS) $(YAJL_LIBS)
325

326 327 328 329 330 331 332

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 已提交
333 334 335 336 337 338
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)

339

340 341
noinst_LTLIBRARIES += libvirt_driver.la
libvirt_la_LIBADD += libvirt_driver.la
342
libvirt_driver_la_SOURCES = $(DRIVER_SOURCES)
343

344 345
libvirt_driver_la_CFLAGS = $(NUMACTL_CFLAGS)	\
		-I@top_srcdir@/src/conf
346
libvirt_driver_la_LDFLAGS = $(NUMACTL_LIBS)
347

348
USED_SYM_FILES = libvirt_private.syms
349

350
if WITH_TEST
351 352 353
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_test.la
else
354 355
noinst_LTLIBRARIES += libvirt_driver_test.la
libvirt_la_LIBADD += libvirt_driver_test.la
356
endif
357 358
libvirt_driver_test_la_CFLAGS = \
		-I@top_srcdir@/src/conf
359 360 361
if WITH_DRIVER_MODULES
libvirt_driver_test_la_LDFLAGS = -module -avoid-version
endif
362
libvirt_driver_test_la_SOURCES = $(TEST_DRIVER_SOURCES)
363 364 365
endif

if WITH_REMOTE
366 367 368
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_remote.la
else
369 370
noinst_LTLIBRARIES += libvirt_driver_remote.la
libvirt_la_LIBADD += libvirt_driver_remote.la
371
endif
372 373
libvirt_driver_remote_la_CFLAGS =				\
		$(GNUTLS_CFLAGS)				\
374
		$(SASL_CFLAGS)					\
375
		-I@top_srcdir@/src/conf
376 377 378
libvirt_driver_remote_la_LDFLAGS =				\
		$(GNUTLS_LIBS)					\
		$(SASL_LIBS)
379 380 381
if WITH_DRIVER_MODULES
libvirt_driver_remote_la_LDFLAGS += -module -avoid-version
endif
382
libvirt_driver_remote_la_SOURCES = $(REMOTE_DRIVER_SOURCES)
383 384 385 386 387 388

if HAVE_RPCGEN
#
# Maintainer-only target for re-generating the derived .c/.h source
# files, which are actually derived from the .x file.
#
389
# For committing protocol changes to GIT, the GLIBC rpcgen *must*
390 391 392 393 394 395 396 397 398 399
# 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 已提交
400 401
	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
402 403 404 405 406 407 408 409 410 411 412 413 414
	(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
415 416 417
endif

if WITH_XEN
418 419 420
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_xen.la
else
421 422
noinst_LTLIBRARIES += libvirt_driver_xen.la
libvirt_la_LIBADD += libvirt_driver_xen.la
423
endif
424 425 426
libvirt_driver_xen_la_CFLAGS = 					\
		$(XEN_CFLAGS)					\
		-I@top_srcdir@/src/conf
427
libvirt_driver_xen_la_LDFLAGS = $(XEN_LIBS)
428 429 430
if WITH_DRIVER_MODULES
libvirt_driver_xen_la_LDFLAGS += -module -avoid-version
endif
431
libvirt_driver_xen_la_SOURCES = $(XEN_DRIVER_SOURCES)
432 433
endif

434 435 436 437 438 439 440
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
441
libvirt_driver_phyp_la_LDFLAGS = $(LIBSSH2_LIBS)
442 443
libvirt_driver_phyp_la_CFLAGS = $(LIBSSH2_CFLAGS) \
		-I@top_srcdir@/src/conf
444 445 446
libvirt_driver_phyp_la_SOURCES = $(PHYP_DRIVER_SOURCES)
endif

447
if WITH_OPENVZ
448 449 450
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_openvz.la
else
451 452
noinst_LTLIBRARIES += libvirt_driver_openvz.la
libvirt_la_LIBADD += libvirt_driver_openvz.la
453
endif
454 455
libvirt_driver_openvz_la_CFLAGS = \
		-I@top_srcdir@/src/conf
456 457 458
if WITH_DRIVER_MODULES
libvirt_driver_openvz_la_LDFLAGS = -module -avoid-version
endif
459
libvirt_driver_openvz_la_SOURCES = $(OPENVZ_DRIVER_SOURCES)
460 461
endif

462 463 464 465 466 467 468
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
469 470
libvirt_driver_vbox_la_CFLAGS = \
		-I@top_srcdir@/src/conf
471 472 473
if WITH_DRIVER_MODULES
libvirt_driver_vbox_la_LDFLAGS = -module -avoid-version
endif
474
libvirt_driver_vbox_la_LIBADD = $(DLOPEN_LIBS)
475 476 477
libvirt_driver_vbox_la_SOURCES = $(VBOX_DRIVER_SOURCES)
endif

478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
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

494
if WITH_QEMU
495 496 497
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_qemu.la
else
498
noinst_LTLIBRARIES += libvirt_driver_qemu.la
499 500
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_qemu.la
501
endif
502 503
libvirt_driver_qemu_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
504
libvirt_driver_qemu_la_LDFLAGS = $(NUMACTL_LIBS)
505 506 507
if WITH_DRIVER_MODULES
libvirt_driver_qemu_la_LDFLAGS += -module -avoid-version
endif
508
libvirt_driver_qemu_la_SOURCES = $(QEMU_DRIVER_SOURCES)
509

A
Amy Griffis 已提交
510
conf_DATA += qemu/qemu.conf
511

512 513
augeas_DATA += qemu/libvirtd_qemu.aug
augeastest_DATA += qemu/test_libvirtd_qemu.aug
514

515
endif
516 517
EXTRA_DIST += qemu/qemu.conf qemu/libvirtd_qemu.aug qemu/test_libvirtd_qemu.aug

518 519

if WITH_LXC
520 521 522
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_lxc.la
else
523
noinst_LTLIBRARIES += libvirt_driver_lxc.la
524 525
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_lxc.la
526
endif
527 528
libvirt_driver_lxc_la_CFLAGS = \
		-I@top_srcdir@/src/conf
529 530 531
if WITH_DRIVER_MODULES
libvirt_driver_lxc_la_LDFLAGS = -module -avoid-version
endif
532
libvirt_driver_lxc_la_SOURCES = $(LXC_DRIVER_SOURCES)
A
Amy Griffis 已提交
533 534 535

conf_DATA += lxc/lxc.conf

536 537 538
augeas_DATA += lxc/libvirtd_lxc.aug
augeastest_DATA += lxc/test_libvirtd_lxc.aug

539
endif
540
EXTRA_DIST += lxc/lxc.conf lxc/libvirtd_lxc.aug lxc/test_libvirtd_lxc.aug
541

542
if WITH_UML
543 544 545
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_uml.la
else
546 547 548
noinst_LTLIBRARIES += libvirt_driver_uml.la
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_uml.la
549
endif
550 551
libvirt_driver_uml_la_CFLAGS = $(NUMACTL_CFLAGS) \
		-I@top_srcdir@/src/conf
552 553 554 555
libvirt_driver_uml_la_LDFLAGS = $(NUMACTL_LIBS)
if WITH_DRIVER_MODULES
libvirt_driver_uml_la_LDFLAGS += -module -avoid-version
endif
556 557
libvirt_driver_uml_la_SOURCES = $(UML_DRIVER_SOURCES)
endif
558

D
Daniel Veillard 已提交
559 560 561 562 563 564 565 566
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
567 568
libvirt_driver_one_la_CFLAGS = $(XMLRPC_CFLAGS) \
		-I@top_srcdir@/src/conf
D
Daniel P. Berrange 已提交
569
libvirt_driver_one_la_LDFLAGS = $(XMLRPC_LIBS)
D
Daniel Veillard 已提交
570 571 572 573 574 575 576 577 578 579
#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




580 581 582 583 584 585 586
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
587 588
libvirt_driver_esx_la_CFLAGS = $(LIBCURL_CFLAGS) \
		-I@top_srcdir@/src/conf
589 590 591 592 593 594 595
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)
endif

596
if WITH_NETWORK
597 598 599
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_network.la
else
600
noinst_LTLIBRARIES += libvirt_driver_network.la
601 602
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_network.la
603
endif
604 605
libvirt_driver_network_la_CFLAGS = \
		-I@top_srcdir@/src/conf
606 607 608
if WITH_DRIVER_MODULES
libvirt_driver_network_la_LDFLAGS = -module -avoid-version
endif
609
libvirt_driver_network_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
610
endif
611 612 613 614
EXTRA_DIST += network/default.xml



615

D
Daniel Veillard 已提交
616
if WITH_NETCF
617 618 619 620 621 622
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
623 624 625
libvirt_driver_interface_la_CFLAGS = $(NETCF_CFLAGS) \
		-I@top_srcdir@/src/conf
libvirt_driver_interface_la_LDFLAGS = $(NETCF_LIBS)
626 627 628 629
if WITH_DRIVER_MODULES
libvirt_driver_interface_la_LDFLAGS += -module -avoid-version
endif
libvirt_driver_interface_la_SOURCES = $(INTERFACE_DRIVER_SOURCES)
D
Daniel Veillard 已提交
630 631
endif

D
Daniel P. Berrange 已提交
632
if WITH_SECRETS
633 634 635 636
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_secret.la
else
noinst_LTLIBRARIES += libvirt_driver_secret.la
637 638
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_secret.la
639
endif
640 641
libvirt_driver_secret_la_CFLAGS = \
		-I@top_srcdir@/src/conf
642
if WITH_DRIVER_MODULES
643
libvirt_driver_secret_la_LDFLAGS = -module -avoid-version ../gnulib/lib/libgnu.la
644 645
endif
libvirt_driver_secret_la_SOURCES = $(SECRET_DRIVER_SOURCES)
D
Daniel P. Berrange 已提交
646
endif
647

648 649
# Needed to keep automake quiet about conditionals
libvirt_driver_storage_la_SOURCES =
650 651
libvirt_driver_storage_la_CFLAGS = \
		-I@top_srcdir@/src/conf
652
libvirt_driver_storage_la_LDFLAGS =
653
if WITH_STORAGE_DIR
654 655 656
if WITH_DRIVER_MODULES
mod_LTLIBRARIES += libvirt_driver_storage.la
else
657
noinst_LTLIBRARIES += libvirt_driver_storage.la
658 659
# Stateful, so linked to daemon instead
#libvirt_la_LIBADD += libvirt_driver_storage.la
660 661
endif
if WITH_DRIVER_MODULES
662
libvirt_driver_storage_la_LDFLAGS += -module -avoid-version
663
endif
664 665
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SOURCES)
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_FS_SOURCES)
666 667
endif

668
if WITH_STORAGE_LVM
669
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_LVM_SOURCES)
670 671
endif

672
if WITH_STORAGE_ISCSI
673
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_ISCSI_SOURCES)
674 675
endif

676 677 678 679
if WITH_STORAGE_SCSI
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_SCSI_SOURCES)
endif

D
Dave Allan 已提交
680 681 682
if WITH_STORAGE_MPATH
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_MPATH_SOURCES)
libvirt_driver_storage_la_CFLAGS += $(DEVMAPPER_CFLAGS)
683
libvirt_driver_storage_la_LDFLAGS += $(DEVMAPPER_LIBS)
D
Dave Allan 已提交
684 685
endif

686
if WITH_STORAGE_DISK
687
libvirt_driver_storage_la_SOURCES += $(STORAGE_DRIVER_DISK_SOURCES)
688
endif
689

690 691 692 693 694 695 696 697 698 699 700
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)

701 702
libvirt_driver_nodedev_la_CFLAGS = \
		-I@top_srcdir@/src/conf
703 704 705 706 707 708
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
709 710
if HAVE_UDEV
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
711 712
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
libvirt_driver_nodedev_la_LDFLAGS += $(UDEV_LIBS) $(PCIACCESS_LIBS)
713
endif
714 715 716 717 718 719 720

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


721 722 723
libvirt_driver_security_la_SOURCES = $(SECURITY_DRIVER_SOURCES)
noinst_LTLIBRARIES += libvirt_driver_security.la
libvirt_la_LIBADD += libvirt_driver_security.la
724 725
libvirt_driver_security_la_CFLAGS = \
		-I@top_srcdir@/src/conf
J
Jamie Strandboge 已提交
726
libvirt_driver_security_la_LDFLAGS =
727 728
if WITH_SECDRIVER_SELINUX
libvirt_driver_security_la_SOURCES += $(SECURITY_DRIVER_SELINUX_SOURCES)
J
Jim Fehlig 已提交
729 730
libvirt_driver_security_la_CFLAGS += $(SELINUX_CFLAGS)
libvirt_driver_security_la_LDFLAGS += $(SELINUX_LIBS)
731
endif
J
Jamie Strandboge 已提交
732 733 734 735 736
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
737

738 739 740 741 742 743 744
# Add all conditional sources just in case...
EXTRA_DIST +=							\
		$(TEST_DRIVER_SOURCES)				\
		$(REMOTE_DRIVER_SOURCES)			\
		$(XEN_DRIVER_SOURCES)				\
		$(QEMU_DRIVER_SOURCES)				\
		$(LXC_DRIVER_SOURCES)				\
745
		$(UML_DRIVER_SOURCES)				\
D
Daniel Veillard 已提交
746
		$(ONE_DRIVER_SOURCES)				\
747
		$(OPENVZ_DRIVER_SOURCES)			\
748
		$(PHYP_DRIVER_SOURCES)				\
749
		$(VBOX_DRIVER_SOURCES)				\
750
		$(XENAPI_DRIVER_SOURCES)			\
751
		$(ESX_DRIVER_SOURCES)				\
752
		$(NETWORK_DRIVER_SOURCES)			\
753
		$(INTERFACE_DRIVER_SOURCES)			\
754 755 756 757
		$(STORAGE_DRIVER_SOURCES)			\
		$(STORAGE_DRIVER_FS_SOURCES)			\
		$(STORAGE_DRIVER_LVM_SOURCES)			\
		$(STORAGE_DRIVER_ISCSI_SOURCES)			\
758
		$(STORAGE_DRIVER_SCSI_SOURCES)			\
D
Dave Allan 已提交
759
		$(STORAGE_DRIVER_MPATH_SOURCES)			\
760 761 762
		$(STORAGE_DRIVER_DISK_SOURCES)			\
		$(NODE_DEVICE_DRIVER_SOURCES)			\
		$(NODE_DEVICE_DRIVER_HAL_SOURCES)		\
763
		$(NODE_DEVICE_DRIVER_UDEV_SOURCES)		\
764
		$(SECURITY_DRIVER_SELINUX_SOURCES)		\
J
Jamie Strandboge 已提交
765
		$(SECURITY_DRIVER_APPARMOR_SOURCES)		\
D
Daniel P. Berrange 已提交
766
		$(SECRET_DRIVER_SOURCES)			\
767
		$(VBOX_DRIVER_EXTRA_DIST)
768

769 770 771 772
check-local: augeas-check

.PHONY: augeas-check
augeas-check:
773
if WITH_QEMU
774
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
775 776 777 778 779
	    '$(AUGPARSE)' -I $(srcdir)/qemu \
	    $(srcdir)/qemu/test_libvirtd_qemu.aug; \
	fi
endif
if WITH_LXC
780
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
781 782 783 784 785
	    '$(AUGPARSE)' -I $(srcdir)/lxc \
	    $(srcdir)/lxc/test_libvirtd_lxc.aug; \
	fi
endif

786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
#
# 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.
#

805
if WITH_DRIVER_MODULES
806
USED_SYM_FILES += libvirt_driver_modules.syms
807
endif
808 809

if WITH_BRIDGE
810
USED_SYM_FILES += libvirt_bridge.syms
811
endif
812 813

if WITH_LINUX
814
USED_SYM_FILES += libvirt_linux.syms
815
endif
816

817
if WITH_MACVTAP
818
USED_SYM_FILES += libvirt_macvtap.syms
819
endif
820

821 822 823 824
if WITH_LIBVIRTD
USED_SYM_FILES += libvirt_daemon.syms
endif

825 826 827 828 829
EXTRA_DIST += \
  libvirt_public.syms		\
  libvirt_private.syms		\
  libvirt_driver_modules.syms	\
  libvirt_bridge.syms		\
830
  libvirt_linux.syms		\
831 832
  libvirt_macvtap.syms		\
  libvirt_daemon.syms
833

834 835
BUILT_SOURCES = libvirt.syms

836
libvirt.syms: libvirt_public.syms $(USED_SYM_FILES)
837 838 839 840 841 842
	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
843
	for file in $(USED_SYM_FILES); do \
844 845 846 847 848
	    cat $(srcdir)/$$file >>$@-tmp; \
	done
	printf '\n\nlocal:\n*;\n\n};' >>$@-tmp
	chmod a-w $@-tmp
	mv $@-tmp libvirt.syms
849

850 851
# Empty source list - it merely links a bunch of convenience libs together
libvirt_la_SOURCES =
852
libvirt_la_LIBADD += \
853
		    $(CYGWIN_EXTRA_LIBADD) ../gnulib/lib/libgnu.la
854
libvirt_la_LDFLAGS = $(VERSION_SCRIPT_FLAGS)libvirt.syms \
855
                     -version-info $(LIBVIRT_VERSION_INFO) \
856
                    $(COVERAGE_CFLAGS:-f%=-Wc,-f%) \
857 858
                    $(LIBXML_LIBS) \
		    $(DRIVER_MODULE_LIBS) \
859
		    $(CYGWIN_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
860
libvirt_la_CFLAGS = $(COVERAGE_CFLAGS) -DIN_LIBVIRT
861
libvirt_la_DEPENDENCIES = $(libvirt_la_LIBADD) libvirt.syms
862

863 864 865
# 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.
866
noinst_LTLIBRARIES += libvirt_test.la
867

868
# Remove version script from convenience library
869 870
test_LDFLAGS =						\
  $$(echo '$(libvirt_la_LDFLAGS)'			\
871 872
     |sed 's!$(VERSION_SCRIPT_FLAGS)libvirt.syms!!'	\
     |sed 's!-version-info $(LIBVIRT_VERSION_INFO)!!')
873 874 875 876 877 878 879

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

880

881 882
libexec_PROGRAMS =

883
if WITH_STORAGE_DISK
R
Richard W.M. Jones 已提交
884
if WITH_LIBVIRTD
885
libexec_PROGRAMS += libvirt_parthelper
886

887
libvirt_parthelper_SOURCES = $(STORAGE_HELPER_DISK_SOURCES)
888 889 890
libvirt_parthelper_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDCFLAGS)
libvirt_parthelper_LDADD = $(LIBPARTED_LIBS)
libvirt_parthelper_CFLAGS =  $(LIBPARTED_CFLAGS)
R
Richard W.M. Jones 已提交
891
endif
892
endif
893 894
EXTRA_DIST += $(STORAGE_HELPER_DISK_SOURCES)

895

896 897 898 899 900 901
if WITH_LXC
if WITH_LIBVIRTD
libexec_PROGRAMS += libvirt_lxc

libvirt_lxc_SOURCES =						\
		$(LXC_CONTROLLER_SOURCES)			\
902
		$(UTIL_SOURCES)					\
903 904
		$(NODE_INFO_SOURCES)				\
		$(ENCRYPTION_CONF_SOURCES)			\
905 906
		$(DOMAIN_CONF_SOURCES)				\
		$(CPU_CONF_SOURCES)
907
libvirt_lxc_LDFLAGS = $(WARN_CFLAGS) $(COVERAGE_LDCFLAGS) $(CAPNG_LIBS) $(YAJL_LIBS)
908
libvirt_lxc_LDADD = $(LIBXML_LIBS) $(NUMACTL_LIBS) ../gnulib/lib/libgnu.la
909 910 911 912
libvirt_lxc_CFLAGS =				\
		$(LIBPARTED_CFLAGS)		\
		$(NUMACTL_CFLAGS)		\
		$(CAPNG_CFLAGS)			\
913
		$(YAJL_CFLAGS)			\
914
		-I@top_srcdir@/src/conf
915 916 917 918
endif
endif
EXTRA_DIST += $(LXC_CONTROLLER_SOURCES)

J
Jamie Strandboge 已提交
919 920 921 922 923 924 925 926 927 928 929
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		\
930 931
		@top_srcdir@/src/libvirt_util.la		\
		@top_srcdir@/gnulib/lib/libgnu.la
J
Jamie Strandboge 已提交
932 933 934 935 936 937 938
virt_aa_helper_CFLAGS =						\
		-I@top_srcdir@/src/conf				\
		-I@top_srcdir@/src/security
endif
endif
EXTRA_DIST += $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES)

939
install-data-local:
940 941 942 943 944 945
	$(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"
946
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/cache/libvirt/qemu"
947
	$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt/qemu"
948 949 950 951 952 953 954 955 956 957 958 959
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"
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
	$(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" ||:
980
endif
981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997
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 已提交
998

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