mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
0bbe8da810
Mon Jun 11 14:10:00 BST 2007 Richard W.M. Jones <rjones@redhat.com> * libvirt.spec.in: BuildRequires gnutls-devel and set the remote PIDfile when configuring. * qemud/Makefile.am: Distribute the Perl scripts. * qemud/qemud.c: Only use QEMUD_DEBUG when ENABLE_DEBUG is defined.
100 lines
3.4 KiB
Makefile
100 lines
3.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = @LIBXML_CFLAGS@
|
|
UUID=$(shell uuidgen)
|
|
|
|
sbin_PROGRAMS = libvirt_qemud
|
|
|
|
libvirt_qemud_SOURCES = \
|
|
qemud.c internal.h \
|
|
driver.c driver.h \
|
|
dispatch.c dispatch.h \
|
|
conf.c conf.h \
|
|
bridge.c bridge.h \
|
|
iptables.c iptables.h \
|
|
uuid.c uuid.h \
|
|
buf.c buf.h \
|
|
protocol.h protocol.c \
|
|
remote_protocol.h remote_protocol.c \
|
|
remote.c
|
|
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
|
|
libvirt_qemud_CFLAGS = \
|
|
-I$(top_srcdir)/include -I$(top_builddir)/include $(LIBXML_CFLAGS) \
|
|
$(WARN_CFLAGS) -DLOCAL_STATE_DIR="\"$(localstatedir)\"" \
|
|
-DSYSCONF_DIR="\"$(sysconfdir)\"" \
|
|
-DQEMUD_PID_FILE="\"$(QEMUD_PID_FILE)\"" \
|
|
-DREMOTE_PID_FILE="\"$(REMOTE_PID_FILE)\""
|
|
libvirt_qemud_LDFLAGS = $(WARN_CFLAGS) $(LIBXML_LIBS) $(SYSFS_LIBS)
|
|
libvirt_qemud_DEPENDENCIES = ../src/libvirt.la
|
|
libvirt_qemud_LDADD = ../src/libvirt.la
|
|
|
|
install-data-local:
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart
|
|
$(INSTALL_DATA) $(srcdir)/default-network.xml $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
|
|
sed -i -e "s,</name>,</name>\n <uuid>$(UUID)</uuid>," $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
|
|
test -e $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml || \
|
|
ln -s ../default.xml $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
|
|
mkdir -p $(DESTDIR)$(localstatedir)/log/libvirt/qemu
|
|
mkdir -p $(DESTDIR)$(localstatedir)/run/libvirt
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/libvirt
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
|
|
rm -f $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
|
|
rmdir $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart || :
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/qemu || :
|
|
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
|
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
|
|
|
# Distribute the generated files so that rpcgen isn't required on the
|
|
# target machine (although almost any Unix machine will have it).
|
|
EXTRA_DIST = libvirtd.in default-network.xml \
|
|
protocol.x remote_protocol.x \
|
|
protocol.c protocol.h \
|
|
remote_protocol.c remote_protocol.h \
|
|
remote_generate_stubs.pl rpcgen_fix.pl \
|
|
remote_dispatch_prototypes.h \
|
|
remote_dispatch_localvars.h \
|
|
remote_dispatch_proc_switch.h
|
|
|
|
.x.c:
|
|
rm -f $@
|
|
rpcgen -c -o $@ $<
|
|
mv $@ $@.bak
|
|
perl -w rpcgen_fix.pl < $@.bak > $@
|
|
|
|
.x.h:
|
|
rm -f $@
|
|
rpcgen -h -o $@ $<
|
|
|
|
protocol.c: protocol.h
|
|
remote_protocol.c: remote_protocol.h
|
|
|
|
remote.c: remote_dispatch_prototypes.h \
|
|
remote_dispatch_localvars.h \
|
|
remote_dispatch_proc_switch.h
|
|
|
|
remote_dispatch_prototypes.h: remote_generate_stubs.pl remote_protocol.x
|
|
perl -w remote_generate_stubs.pl -i remote_protocol.x > $@
|
|
|
|
remote_dispatch_localvars.h: remote_generate_stubs.pl remote_protocol.x
|
|
perl -w remote_generate_stubs.pl -v remote_protocol.x > $@
|
|
|
|
remote_dispatch_proc_switch.h: remote_generate_stubs.pl remote_protocol.x
|
|
perl -w remote_generate_stubs.pl -w remote_protocol.x > $@
|
|
|
|
if LIBVIRT_INIT_SCRIPTS_RED_HAT
|
|
initdir = $(sysconfdir)/rc.d/init.d
|
|
init_SCRIPTS = libvirtd
|
|
|
|
libvirtd: libvirtd.in
|
|
sed \
|
|
-e s!\@localstatedir\@!@localstatedir@! \
|
|
-e s!\@sbindir\@!@sbindir@! \
|
|
-e s!\@sysconfdir\@!@sysconfdir@! \
|
|
< $< > $@
|
|
chmod a+x libvirtd
|
|
|
|
CLEANFILES = libvirtd
|
|
endif # DBUS_INIT_SCRIPTS_RED_HAT
|