mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-15 00:55:17 +00:00
1509b8027f
* include/libvirt/libvirt.h include/libvirt/libvirt.h.in src/libvirt.c src/libvirt_sym.version: new libvirt event entry points, big patch provided by Ben Guthro * Makefile.am configure.in src/driver.h src/event.c src/event.h src/internal.h src/libvirt.c src/libvirt_sym.version src/lxc_driver.c src/openvz_driver.c src/qemu_conf.h src/qemu_driver.c src/remote_internal.c src/storage_backend_fs.c src/test.c qemud/event.c qemud/event.h qemud/mdns.c qemud/qemud.c qemud/qemud.h qemud/remote.c qemud/remote_dispatch_localvars.h qemud/remote_dispatch_proc_switch.h qemud/remote_dispatch_prototypes.h qemud/remote_protocol.c qemud/remote_protocol.h qemud/remote_protocol.x proxy/Makefile.am python/generator.py: Not much is left untouched by the patch adding the events support * docs/libvirt-api.xml docs/libvirt-refs.xml docs/html/libvirt-libvirt.html: regenerated the docs * examples/domain-events/events-c/Makefile.am examples/domain-events/events-c/event-test.c: a test example * AUTHORS: added Ben Guthro daniel
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if WITH_PROXY
|
|
INCLUDES = -I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
|
|
-I$(top_builddir)/include -I@top_srcdir@/include \
|
|
-I@top_srcdir@/proxy -I@top_srcdir@/src @LIBXML_CFLAGS@ \
|
|
-DPROXY -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\" $(WARN_CFLAGS) $(LIBVIRT_FEATURES)
|
|
|
|
libexec_PROGRAMS = libvirt_proxy
|
|
|
|
libvirt_proxy_SOURCES = libvirt_proxy.c @top_srcdir@/src/xend_internal.c \
|
|
@top_srcdir@/src/xen_internal.c @top_srcdir@/src/virterror.c \
|
|
@top_srcdir@/src/sexpr.c \
|
|
@top_srcdir@/src/xs_internal.c @top_srcdir@/src/buf.c \
|
|
@top_srcdir@/src/capabilities.c \
|
|
@top_srcdir@/src/memory.c \
|
|
@top_srcdir@/src/domain_conf.c \
|
|
@top_srcdir@/src/util.c \
|
|
@top_srcdir@/src/event.c \
|
|
@top_srcdir@/src/uuid.c
|
|
libvirt_proxy_LDFLAGS = $(WARN_CFLAGS)
|
|
libvirt_proxy_DEPENDENCIES =
|
|
libvirt_proxy_LDADD = ../gnulib/lib/libgnu.la
|
|
|
|
install-exec-hook:
|
|
chmod u+s $(DESTDIR)$(libexecdir)/libvirt_proxy
|
|
endif
|