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

3
## Copyright (C) 2005-2014 Red Hat, Inc.
E
Eric Blake 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation; either
## version 2.1 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with this library.  If not, see
## <http://www.gnu.org/licenses/>.
18

19
INCLUDES = \
20
	-I$(top_builddir)/gnulib/lib -I$(top_srcdir)/gnulib/lib \
21
	-I$(top_srcdir) \
22 23
	-I$(top_builddir)/include -I$(top_srcdir)/include \
	-I$(top_builddir)/src -I$(top_srcdir)/src \
24 25 26 27
	-I$(top_srcdir)/src/util \
	-I$(top_srcdir)/src/conf \
	-I$(top_srcdir)/src/rpc \
	-I$(top_srcdir)/src/remote \
28
	-I$(top_srcdir)/src/access \
29 30
	$(GETTEXT_CPPFLAGS)

31 32
CLEANFILES =

E
Eric Blake 已提交
33 34 35 36
DAEMON_GENERATED =			\
		remote_dispatch.h	\
		lxc_dispatch.h		\
		qemu_dispatch.h		\
37
		$(NULL)
38 39 40 41 42 43

DAEMON_SOURCES =					\
		libvirtd.c libvirtd.h			\
		remote.c remote.h			\
		stream.c stream.h			\
		$(DAEMON_GENERATED)
44

45 46
LIBVIRTD_CONF_SOURCES = libvirtd-config.c libvirtd-config.h

47
DISTCLEANFILES =
48
EXTRA_DIST =						\
49
	remote_dispatch.h				\
50
	lxc_dispatch.h					\
51
	qemu_dispatch.h					\
52 53
	libvirtd.conf					\
	libvirtd.init.in				\
A
Alan Pevec 已提交
54
	libvirtd.upstart				\
C
Cole Robinson 已提交
55
	libvirtd.policy.in				\
56
	libvirtd.sasl					\
57
	libvirtd.service.in				\
58
	libvirtd.socket.in				\
59
	libvirtd.sysconf				\
E
Eric Blake 已提交
60
	libvirtd.sysctl					\
61
	libvirtd.aug                                    \
62
	libvirtd.logrotate.in                           \
63 64 65
	libvirtd.qemu.logrotate.in                      \
	libvirtd.lxc.logrotate.in                       \
	libvirtd.uml.logrotate.in                       \
66
	test_libvirtd.aug.in                             \
67
	THREADS.txt					\
68
	libvirtd.pod.in					\
69
	libvirtd.8.in					\
70 71 72
	$(DAEMON_SOURCES)				\
	$(LIBVIRTD_CONF_SOURCES)			\
	$(NULL)
73

74
BUILT_SOURCES =
75

76
REMOTE_PROTOCOL = $(top_srcdir)/src/remote/remote_protocol.x
77
LXC_PROTOCOL = $(top_srcdir)/src/remote/lxc_protocol.x
78 79
QEMU_PROTOCOL = $(top_srcdir)/src/remote/qemu_protocol.x

E
Eric Blake 已提交
80
remote_dispatch.h: $(srcdir)/../src/rpc/gendispatch.pl \
81
		$(REMOTE_PROTOCOL)
82
	$(AM_V_GEN)$(PERL) -w $(srcdir)/../src/rpc/gendispatch.pl \
E
Eric Blake 已提交
83 84
	  --mode=server remote REMOTE $(REMOTE_PROTOCOL) \
	  > $(srcdir)/remote_dispatch.h
85

E
Eric Blake 已提交
86
lxc_dispatch.h: $(srcdir)/../src/rpc/gendispatch.pl \
87
		$(LXC_PROTOCOL)
88
	$(AM_V_GEN)$(PERL) -w $(srcdir)/../src/rpc/gendispatch.pl \
E
Eric Blake 已提交
89 90
	  --mode=server lxc LXC $(LXC_PROTOCOL) \
	  > $(srcdir)/lxc_dispatch.h
91

E
Eric Blake 已提交
92
qemu_dispatch.h: $(srcdir)/../src/rpc/gendispatch.pl \
93
		$(QEMU_PROTOCOL)
94
	$(AM_V_GEN)$(PERL) -w $(srcdir)/../src/rpc/gendispatch.pl \
E
Eric Blake 已提交
95 96
	  --mode=server qemu QEMU $(QEMU_PROTOCOL) \
	  > $(srcdir)/qemu_dispatch.h
97

98 99
if WITH_LIBVIRTD

100 101 102 103 104
# Build a convenience library, for reuse in tests/libvirtdconftest
noinst_LTLIBRARIES = libvirtd_conf.la
libvirtd_conf_la_SOURCES = $(LIBVIRTD_CONF_SOURCES)
libvirtd_conf_la_CFLAGS = \
	$(LIBXML_CFLAGS) \
E
Eric Blake 已提交
105
	$(XDR_CFLAGS) \
106 107 108 109 110 111 112 113 114 115 116
	$(WARN_CFLAGS) $(PIE_CFLAGS) \
	$(COVERAGE_CFLAGS) \
	$(NULL)
libvirtd_conf_la_LDFLAGS =				\
	$(RELRO_LDFLAGS)				\
	$(PIE_LDFLAGS)					\
	$(COVERAGE_LDFLAGS)				\
	$(NO_INDIRECT_LDFLAGS)				\
	$(NULL)
libvirtd_conf_la_LIBADD = $(LIBXML_LIBS)

117
man8_MANS = libvirtd.8
118

119 120 121 122
sbin_PROGRAMS = libvirtd

confdir = $(sysconfdir)/libvirt/
conf_DATA = libvirtd.conf
123

124
augeasdir = $(datadir)/augeas/lenses
125
augeas_DATA = libvirtd.aug
126 127

augeastestsdir = $(datadir)/augeas/lenses/tests
128
augeastests_DATA = test_libvirtd.aug
129

130 131
CLEANFILES += test_libvirtd.aug

132
libvirtd.8: $(srcdir)/libvirtd.8.in
133
	$(AM_V_GEN)sed \
134 135
	    -e 's|[@]sysconfdir[@]|$(sysconfdir)|g' \
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g' \
136
	    < $< > $@-t && \
137 138
	mv $@-t $@

139
libvirtd_SOURCES = $(DAEMON_SOURCES)
140

D
Daniel P. Berrange 已提交
141
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
142
libvirtd_CFLAGS = \
143
	$(LIBXML_CFLAGS) $(GNUTLS_CFLAGS) $(SASL_CFLAGS) \
144
	$(XDR_CFLAGS) $(DBUS_CFLAGS) $(LIBNL_CFLAGS) \
D
Daniel P. Berrange 已提交
145
	$(WARN_CFLAGS) $(PIE_CFLAGS) \
146
	$(COVERAGE_CFLAGS) \
147
	-DQEMUD_PID_FILE="\"$(QEMUD_PID_FILE)\""
148

E
Eric Blake 已提交
149
libvirtd_LDFLAGS =					\
G
Guido Günther 已提交
150
	$(RELRO_LDFLAGS)				\
D
Daniel P. Berrange 已提交
151
	$(PIE_LDFLAGS)					\
G
Guido Günther 已提交
152
	$(COVERAGE_LDFLAGS)				\
153
	$(NO_INDIRECT_LDFLAGS)				\
G
Guido Günther 已提交
154
	$(NULL)
155

156
libvirtd_LDADD =					\
157 158 159
	$(LIBXML_LIBS)					\
	$(GNUTLS_LIBS)					\
	$(SASL_LIBS)					\
160
	$(DBUS_LIBS)					\
D
Doug Goldstein 已提交
161
	$(LIBNL_LIBS)
162

163
if WITH_DTRACE_PROBES
164
libvirtd_LDADD += ../src/libvirt_probes.lo
165
endif WITH_DTRACE_PROBES
166

167
libvirtd_LDADD += \
168
	libvirtd_conf.la \
169
	../src/libvirt-lxc.la \
170 171 172
	../src/libvirt-qemu.la \
	../src/libvirt_driver_remote.la \
	$(NULL)
C
Chris Lalancette 已提交
173

174
if ! WITH_DRIVER_MODULES
175
if WITH_QEMU
176
    libvirtd_LDADD += ../src/libvirt_driver_qemu.la
177
if WITH_DTRACE_PROBES
178
    libvirtd_LDADD += ../src/libvirt_qemu_probes.lo
179 180
endif WITH_DTRACE_PROBES
endif WITH_QEMU
181

182
if WITH_LXC
183
    libvirtd_LDADD += ../src/libvirt_driver_lxc.la
184
endif WITH_LXC
185

186 187
if WITH_XEN
    libvirtd_LDADD += ../src/libvirt_driver_xen.la
188
endif WITH_XEN
189

J
Jim Fehlig 已提交
190 191
if WITH_LIBXL
    libvirtd_LDADD += ../src/libvirt_driver_libxl.la
192
endif WITH_LIBXL
J
Jim Fehlig 已提交
193

194
if WITH_UML
195
    libvirtd_LDADD += ../src/libvirt_driver_uml.la
196
endif WITH_UML
197

J
Jiri Denemark 已提交
198 199
if WITH_VBOX
    libvirtd_LDADD += ../src/libvirt_driver_vbox.la
200
endif WITH_VBOX
J
Jiri Denemark 已提交
201

202
if WITH_STORAGE
203
    libvirtd_LDADD += ../src/libvirt_driver_storage.la
204
endif WITH_STORAGE
205

206
if WITH_NETWORK
207
    libvirtd_LDADD += ../src/libvirt_driver_network.la
208
endif WITH_NETWORK
209

210
if WITH_INTERFACE
211
    libvirtd_LDADD += ../src/libvirt_driver_interface.la
212
endif WITH_INTERFACE
213

214
if WITH_NODE_DEVICES
215
    libvirtd_LDADD += ../src/libvirt_driver_nodedev.la
216
endif WITH_NODE_DEVICES
217 218 219

if WITH_SECRETS
    libvirtd_LDADD += ../src/libvirt_driver_secret.la
220
endif WITH_SECRETS
221 222 223

if WITH_NWFILTER
    libvirtd_LDADD += ../src/libvirt_driver_nwfilter.la
224 225
endif WITH_NWFILTER
endif ! WITH_DRIVER_MODULES
226 227

libvirtd_LDADD += ../src/libvirt.la
D
Daniel P. Berrange 已提交
228

229 230
if WITH_POLKIT
if WITH_POLKIT0
231
policydir = $(datadir)/PolicyKit/policy
C
Cole Robinson 已提交
232
policyauth = auth_admin_keep_session
233
else ! WITH_POLKIT0
234
policydir = $(datadir)/polkit-1/actions
C
Cole Robinson 已提交
235
policyauth = auth_admin_keep
236 237
endif ! WITH_POLKIT0
endif WITH_POLKIT
238

C
Cole Robinson 已提交
239 240
libvirtd.policy: libvirtd.policy.in $(top_builddir)/config.status
	$(AM_V_GEN) sed \
241
	    -e 's|[@]authaction[@]|$(policyauth)|g' \
C
Cole Robinson 已提交
242 243 244 245
	    < $< > $@-t && \
	mv $@-t $@
BUILT_SOURCES += libvirtd.policy

246 247
install-data-local: install-init-redhat install-init-systemd \
		install-init-upstart \
248 249
		install-data-sasl install-data-polkit \
		install-logrotate install-sysctl
250 251 252
	$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt \
		   $(DESTDIR)$(localstatedir)/run/libvirt \
		   $(DESTDIR)$(localstatedir)/lib/libvirt
253

254 255
uninstall-local:: uninstall-init-redhat uninstall-init-systemd \
		uninstall-init-upstart \
256
		uninstall-data-sasl uninstall-data-polkit \
257
		uninstall-logrotate uninstall-sysctl
258
	rmdir $(DESTDIR)$(localstatedir)/log/libvirt || :
259
	rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
260
	rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
261

262
if WITH_POLKIT
263
install-data-polkit::
264
	$(MKDIR_P) $(DESTDIR)$(policydir)
C
Cole Robinson 已提交
265
	$(INSTALL_DATA) libvirtd.policy $(DESTDIR)$(policydir)/org.libvirt.unix.policy
266
uninstall-data-polkit::
267
	rm -f $(DESTDIR)$(policydir)/org.libvirt.unix.policy
268
	rmdir $(DESTDIR)$(policydir) || :
269
else ! WITH_POLKIT
270 271
install-data-polkit::
uninstall-data-polkit::
272
endif ! WITH_POLKIT
273

274 275
remote.c: $(DAEMON_GENERATED)
remote.h: $(DAEMON_GENERATED)
276

277
LOGROTATE_CONFS = libvirtd.qemu.logrotate libvirtd.lxc.logrotate \
278
		  libvirtd.uml.logrotate libvirtd.logrotate
279

280 281
BUILT_SOURCES += $(LOGROTATE_CONFS)

282
libvirtd.logrotate: libvirtd.logrotate.in
283
	$(AM_V_GEN)sed						\
284
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
285
	    < $< > $@-t && \
286 287
	mv $@-t $@

288
libvirtd.qemu.logrotate: libvirtd.qemu.logrotate.in
289
	$(AM_V_GEN)sed						\
290
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
291
	    < $< > $@-t && \
292 293 294
	mv $@-t $@

libvirtd.lxc.logrotate: libvirtd.lxc.logrotate.in
295
	$(AM_V_GEN)sed						\
296
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
297 298
	    < $< > $@-t &&					\
	    mv $@-t $@
299 300

libvirtd.uml.logrotate: libvirtd.uml.logrotate.in
301
	$(AM_V_GEN)sed						\
302
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
303 304
	    < $< > $@-t &&					\
	    mv $@-t $@
G
Guido Günther 已提交
305

306
install-logrotate: $(LOGROTATE_CONFS)
307 308 309 310
	$(MKDIR_P) $(DESTDIR)$(localstatedir)/log/libvirt/qemu/ \
		   $(DESTDIR)$(localstatedir)/log/libvirt/lxc/ \
		   $(DESTDIR)$(localstatedir)/log/libvirt/uml/ \
		   $(DESTDIR)$(sysconfdir)/logrotate.d/
311 312 313 314 315 316 317 318
	$(INSTALL_DATA) libvirtd.logrotate \
		$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd
	$(INSTALL_DATA) libvirtd.qemu.logrotate \
		$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.qemu
	$(INSTALL_DATA) libvirtd.lxc.logrotate \
		$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.lxc
	$(INSTALL_DATA) libvirtd.uml.logrotate \
		$(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.uml
G
Guido Günther 已提交
319

320 321 322 323 324 325 326 327 328 329
uninstall-logrotate:
	rm -f $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd \
	      $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.qemu \
	      $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.lxc \
	      $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd.uml
	rmdir $(DESTDIR)$(localstatedir)/log/libvirt/qemu || :
	rmdir $(DESTDIR)$(localstatedir)/log/libvirt/lxc || :
	rmdir $(DESTDIR)$(localstatedir)/log/libvirt/uml || :
	rmdir $(DESTDIR)$(sysconfdir)/logrotate.d || :

330
install-sysconfig:
331
	$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sysconfig
332
	$(INSTALL_DATA) $(srcdir)/libvirtd.sysconf \
J
Jim Meyering 已提交
333
	  $(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
334 335
uninstall-sysconfig:
	rm -f $(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
336
	rmdir $(DESTDIR)$(sysconfdir)/sysconfig || :
337

338
if WITH_SYSCTL
339 340
# Use $(prefix)/lib rather than $(libdir), since man sysctl.d insists on
# /usr/lib/sysctl.d/ even when libdir is /usr/lib64
341
install-sysctl:
342
	$(MKDIR_P) $(DESTDIR)$(prefix)/lib/sysctl.d
E
Eric Blake 已提交
343
	$(INSTALL_DATA) $(srcdir)/libvirtd.sysctl \
344
	  $(DESTDIR)$(prefix)/lib/sysctl.d/libvirtd.conf
345

346
uninstall-sysctl:
347 348
	rm -f $(DESTDIR)$(prefix)/lib/sysctl.d/libvirtd.conf
	rmdir $(DESTDIR)$(prefix)/lib/sysctl.d || :
349
else ! WITH_SYSCTL
350 351
install-sysctl:
uninstall-sysctl:
352
endif ! WITH_SYSCTL
353 354

if LIBVIRT_INIT_SCRIPT_RED_HAT
D
Daniel P. Berrange 已提交
355

356
BUILT_SOURCES += libvirtd.init
357

358
install-init-redhat: install-sysconfig libvirtd.init
359
	$(MKDIR_P) $(DESTDIR)$(sysconfdir)/rc.d/init.d
360 361 362 363 364
	$(INSTALL_SCRIPT) libvirtd.init \
	  $(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd

uninstall-init-redhat: uninstall-sysconfig
	rm -f $(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd
365
	rmdir $(DESTDIR)$(sysconfdir)/rc.d/init.d || :
366
else ! LIBVIRT_INIT_SCRIPT_RED_HAT
367 368
install-init-redhat:
uninstall-init-redhat:
369
endif ! LIBVIRT_INIT_SCRIPT_RED_HAT
370 371 372 373 374


if LIBVIRT_INIT_SCRIPT_UPSTART

install-init-upstart: install-sysconfig
375
	$(MKDIR_P) $(DESTDIR)$(sysconfdir)/event.d
376 377 378 379 380
	$(INSTALL_SCRIPT) libvirtd.upstart \
	  $(DESTDIR)$(sysconfdir)/event.d/libvirtd

uninstall-init-upstart: uninstall-sysconfig
	rm -f $(DESTDIR)$(sysconfdir)/event.d/libvirtd
381
	rmdir $(DESTDIR)$(sysconfdir)/event.d || :
382
else ! LIBVIRT_INIT_SCRIPT_UPSTART
383 384
install-init-upstart:
uninstall-init-upstart:
385
endif ! LIBVIRT_INIT_SCRIPT_UPSTART
386 387 388 389


if LIBVIRT_INIT_SCRIPT_SYSTEMD

390
SYSTEMD_UNIT_DIR = $(prefix)/lib/systemd/system
391
BUILT_SOURCES += libvirtd.service libvirtd.socket
392

393
install-init-systemd: install-sysconfig libvirtd.service libvirtd.socket
394
	$(MKDIR_P) $(DESTDIR)$(SYSTEMD_UNIT_DIR)
395
	$(INSTALL_DATA) libvirtd.service \
396
	  $(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.service
397 398
	$(INSTALL_DATA) libvirtd.socket \
	  $(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.socket
399 400 401

uninstall-init-systemd: uninstall-sysconfig
	rm -f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.service
402
	rm -f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/libvirtd.socket
403
	rmdir $(DESTDIR)$(SYSTEMD_UNIT_DIR) || :
404
else ! LIBVIRT_INIT_SCRIPT_SYSTEMD
405 406
install-init-systemd:
uninstall-init-systemd:
407
endif ! LIBVIRT_INIT_SCRIPT_SYSTEMD
408

409
libvirtd.init: libvirtd.init.in $(top_builddir)/config.status
410 411 412 413 414 415
	$(AM_V_GEN)sed						\
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
	    -e 's|[@]sbindir[@]|$(sbindir)|g'			\
	    -e 's|[@]sysconfdir[@]|$(sysconfdir)|g'		\
	    < $< > $@-t &&					\
	    chmod a+x $@-t &&					\
416
	    mv $@-t $@
D
Daniel P. Berrange 已提交
417

418
libvirtd.service: libvirtd.service.in $(top_builddir)/config.status
419 420 421 422 423
	$(AM_V_GEN)sed						\
	    -e 's|[@]localstatedir[@]|$(localstatedir)|g'	\
	    -e 's|[@]sbindir[@]|$(sbindir)|g'			\
	    -e 's|[@]sysconfdir[@]|$(sysconfdir)|g'		\
	    < $< > $@-t &&					\
424 425
	    mv $@-t $@

426 427 428 429 430 431
libvirtd.socket: libvirtd.socket.in $(top_builddir)/config.status
	$(AM_V_GEN)sed						\
	    -e 's|[@]runstatedir[@]|$(runstatedir)|g'		\
	    < $< > $@-t &&					\
	    mv $@-t $@

432

433 434
check-local: check-augeas

435 436 437 438
AUG_GENTEST = $(PERL) $(top_srcdir)/build-aux/augeas-gentest.pl

test_libvirtd.aug: test_libvirtd.aug.in $(srcdir)/libvirtd.conf
	$(AM_V_GEN)$(AUG_GENTEST) $(srcdir)/libvirtd.conf $< $@
439 440

check-augeas: test_libvirtd.aug
441
	$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
442
	  '$(AUGPARSE)' -I $(srcdir) test_libvirtd.aug; \
443
	fi
444

445

446 447
# This must be added last, since functions it provides/replaces
# are used by nearly every other library.
J
John Levon 已提交
448
libvirtd_LDADD += ../gnulib/lib/libgnu.la $(LIBSOCKET)
449

450
else ! WITH_LIBVIRTD
451 452
install-data-local: install-data-sasl
uninstall-local:: uninstall-data-sasl
453
endif ! WITH_LIBVIRTD
454

455 456 457
POD2MAN = pod2man -c "Virtualization Support" \
			-r "$(PACKAGE)-$(VERSION)" -s 8

458
$(srcdir)/libvirtd.8.in: libvirtd.pod.in $(top_srcdir)/configure.ac
E
Eric Blake 已提交
459 460
	$(AM_V_GEN)$(POD2MAN) --name LIBVIRTD $< $@ \
	    && if grep 'POD ERROR' $@ ; then rm $@; exit 1; fi
461

462 463
# This is needed for clients too, so can't wrap in
# the WITH_LIBVIRTD conditional
464
if WITH_SASL
465
install-data-sasl:
466
	$(MKDIR_P) $(DESTDIR)$(sysconfdir)/sasl2/
467 468
	$(INSTALL_DATA) $(srcdir)/libvirtd.sasl \
		$(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
469 470 471

uninstall-data-sasl:
	rm -f $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
D
Dave Allan 已提交
472
	rmdir $(DESTDIR)$(sysconfdir)/sasl2/ || :
473
else ! WITH_SASL
D
Daniel P. Berrange 已提交
474 475
install-data-sasl:
uninstall-data-sasl:
476
endif ! WITH_SASL
477 478


479
CLEANFILES += $(BUILT_SOURCES) $(man8_MANS)
480
CLEANFILES += *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
481
MAINTAINERCLEANFILES = $(srcdir)/libvirtd.8.in $(DAEMON_GENERATED)