Makefile.am 1.0 KB
Newer Older
1 2
## Process this file with automake to produce Makefile.in

3
if WITH_PROXY
4 5 6
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@ \
7
	   -DPROXY  -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
8
           -DGETTEXT_PACKAGE=\"$(PACKAGE)\" $(WARN_CFLAGS) $(LIBVIRT_FEATURES)
9

10
libexec_PROGRAMS = libvirt_proxy
11 12 13

libvirt_proxy_SOURCES = libvirt_proxy.c @top_srcdir@/src/xend_internal.c \
	    @top_srcdir@/src/xen_internal.c @top_srcdir@/src/virterror.c \
14
	    @top_srcdir@/src/sexpr.c @top_srcdir@/src/xml.c \
15
            @top_srcdir@/src/xs_internal.c @top_srcdir@/src/buf.c \
16
            @top_srcdir@/src/capabilities.c \
17
            @top_srcdir@/src/memory.c \
18
            @top_srcdir@/src/util.c \
19
	    @top_srcdir@/src/uuid.c
20
libvirt_proxy_LDFLAGS = $(WARN_CFLAGS)
21
libvirt_proxy_DEPENDENCIES =
J
Jim Meyering 已提交
22
libvirt_proxy_LDADD = ../gnulib/lib/libgnu.la
23

24 25
install-exec-hook:
	chmod u+s $(DESTDIR)$(libexecdir)/libvirt_proxy
26
endif