2005-11-02 12:50:21 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
INCLUDES = -I$(top_builddir)/include -I@srcdir@/include
|
2005-12-05 11:16:07 +00:00
|
|
|
DEPS = libvir.la
|
|
|
|
LDADDS = @STATIC_BINARIES@ libvir.la
|
2005-11-02 12:50:21 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
EXTRA_DIST = libvir_sym.version
|
2005-11-02 15:37:34 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
lib_LTLIBRARIES = libvir.la
|
|
|
|
libvir_la_LIBADD =
|
|
|
|
libvir_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvir_sym.version \
|
2005-11-02 15:37:34 +00:00
|
|
|
-version-info @LIBXEN_VERSION_INFO@
|
2005-12-05 11:16:07 +00:00
|
|
|
libvir_la_SOURCES = libvir.c internal.h hash.c hash.h
|
2005-11-10 16:12:31 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
noinst_PROGRAMS=virsh
|
2005-11-10 16:12:31 +00:00
|
|
|
|
2005-12-05 11:16:07 +00:00
|
|
|
virsh_SOURCES=virsh.c
|
|
|
|
virsh_LDFLAGS =
|
|
|
|
virsh_DEPENDENCIES = $(DEPS)
|
|
|
|
virsh_LDADD= $(LDADDS)
|
2005-11-10 16:12:31 +00:00
|
|
|
|