2006-06-28 18:19:13 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2007-11-26 11:52:38 +00:00
|
|
|
if WITH_PROXY
|
2007-12-07 15:00:26 +00:00
|
|
|
INCLUDES = -I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
|
|
|
|
|
-I$(top_builddir)/include -I@top_srcdir@/include \
|
2009-09-16 15:39:12 +01:00
|
|
|
-I@top_srcdir@/proxy -I@top_srcdir@/src \
|
2009-09-16 16:28:46 +01:00
|
|
|
-I@top_srcdir@/src/util \
|
2009-09-16 15:39:12 +01:00
|
|
|
-I@top_srcdir@/src/conf \
|
|
|
|
|
-I@top_srcdir@/src/xen \
|
2010-01-15 11:09:01 +01:00
|
|
|
$(LIBXML_CFLAGS) \
|
2006-09-21 15:24:37 +00:00
|
|
|
-DPROXY -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
|
2008-11-04 23:37:23 +00:00
|
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\" $(WARN_CFLAGS) $(XEN_CFLAGS)
|
2006-06-28 18:19:13 +00:00
|
|
|
|
2006-07-03 13:45:55 +00:00
|
|
|
libexec_PROGRAMS = libvirt_proxy
|
2006-06-28 18:19:13 +00:00
|
|
|
|
2009-09-16 16:28:46 +01:00
|
|
|
libvirt_proxy_SOURCES = libvirt_proxy.c \
|
|
|
|
|
@top_srcdir@/src/util/buf.c \
|
2010-03-31 22:29:42 +02:00
|
|
|
@top_srcdir@/src/util/hash.c \
|
2009-09-16 16:28:46 +01:00
|
|
|
@top_srcdir@/src/util/logging.c \
|
|
|
|
|
@top_srcdir@/src/util/memory.c \
|
2009-11-05 15:31:03 +01:00
|
|
|
@top_srcdir@/src/util/network.c \
|
2009-09-16 16:28:46 +01:00
|
|
|
@top_srcdir@/src/util/threads.c \
|
|
|
|
|
@top_srcdir@/src/util/util.c \
|
|
|
|
|
@top_srcdir@/src/util/uuid.c \
|
|
|
|
|
@top_srcdir@/src/util/virterror.c \
|
2009-09-16 15:39:12 +01:00
|
|
|
@top_srcdir@/src/conf/capabilities.c \
|
|
|
|
|
@top_srcdir@/src/conf/storage_encryption_conf.c \
|
|
|
|
|
@top_srcdir@/src/conf/domain_conf.c \
|
2009-12-18 14:44:55 +01:00
|
|
|
@top_srcdir@/src/conf/cpu_conf.c \
|
2010-03-31 22:29:42 +02:00
|
|
|
@top_srcdir@/src/conf/nwfilter_params.c \
|
2009-09-16 16:28:46 +01:00
|
|
|
@top_srcdir@/src/xen/xend_internal.c \
|
|
|
|
|
@top_srcdir@/src/xen/xen_hypervisor.c \
|
|
|
|
|
@top_srcdir@/src/xen/sexpr.c \
|
|
|
|
|
@top_srcdir@/src/xen/xs_internal.c
|
2010-05-14 16:45:52 -06:00
|
|
|
libvirt_proxy_LDFLAGS = $(WARN_LDFLAGS)
|
2006-06-28 18:19:13 +00:00
|
|
|
libvirt_proxy_DEPENDENCIES =
|
2010-05-14 16:45:52 -06:00
|
|
|
libvirt_proxy_LDADD = ../gnulib/lib/libgnu.la $(XEN_LIBS) $(LIB_PTHREAD)
|
2006-06-28 18:19:13 +00:00
|
|
|
|
2006-07-03 13:45:55 +00:00
|
|
|
install-exec-hook:
|
|
|
|
|
chmod u+s $(DESTDIR)$(libexecdir)/libvirt_proxy
|
2008-02-22 15:53:13 +00:00
|
|
|
endif
|