mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
26 lines
643 B
Makefile
26 lines
643 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_builddir)/include -I@srcdir@/include
|
|
DEPS = libvir.la
|
|
LDADDS = @STATIC_BINARIES@ libvir.la
|
|
VIRSH_LIBS = @VIRSH_LIBS@
|
|
|
|
EXTRA_DIST = libvir_sym.version
|
|
|
|
lib_LTLIBRARIES = libvir.la
|
|
libvir_la_LIBADD =
|
|
libvir_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvir_sym.version \
|
|
-version-info @LIBXEN_VERSION_INFO@
|
|
libvir_la_SOURCES = \
|
|
libvir.c internal.hi \
|
|
hash.c hash.h \
|
|
xen_internal.c xen_internal.h
|
|
|
|
noinst_PROGRAMS=virsh
|
|
|
|
virsh_SOURCES=virsh.c
|
|
virsh_LDFLAGS =
|
|
virsh_DEPENDENCIES = $(DEPS)
|
|
virsh_LDADD= $(LDADDS) $(VIRSH_LIBS)
|
|
|