2007-02-14 01:40:09 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
INCLUDES = @LIBXML_CFLAGS@
|
2007-03-12 14:10:14 +00:00
|
|
|
UUID=$(shell uuidgen)
|
2007-02-14 01:40:09 +00:00
|
|
|
|
2007-02-23 12:46:35 +00:00
|
|
|
sbin_PROGRAMS = libvirt_qemud
|
2007-02-14 01:40:09 +00:00
|
|
|
|
2007-06-11 12:04:54 +00:00
|
|
|
libvirt_qemud_SOURCES = \
|
|
|
|
qemud.c internal.h \
|
2007-02-14 01:40:09 +00:00
|
|
|
driver.c driver.h \
|
|
|
|
dispatch.c dispatch.h \
|
2007-02-14 16:02:40 +00:00
|
|
|
conf.c conf.h \
|
2007-02-14 16:26:42 +00:00
|
|
|
bridge.c bridge.h \
|
2007-02-26 15:32:27 +00:00
|
|
|
iptables.c iptables.h \
|
2007-03-15 17:24:56 +00:00
|
|
|
uuid.c uuid.h \
|
2007-06-11 12:04:54 +00:00
|
|
|
buf.c buf.h \
|
|
|
|
protocol.h protocol.c \
|
|
|
|
remote_protocol.h remote_protocol.c \
|
|
|
|
remote.c
|
2007-02-14 01:40:09 +00:00
|
|
|
#-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) \
|
2007-03-01 16:18:55 +00:00
|
|
|
$(WARN_CFLAGS) -DLOCAL_STATE_DIR="\"$(localstatedir)\"" \
|
2007-04-04 09:32:00 +00:00
|
|
|
-DSYSCONF_DIR="\"$(sysconfdir)\"" \
|
2007-06-11 12:04:54 +00:00
|
|
|
-DQEMUD_PID_FILE="\"$(QEMUD_PID_FILE)\"" \
|
|
|
|
-DREMOTE_PID_FILE="\"$(REMOTE_PID_FILE)\""
|
2007-05-29 14:44:15 +00:00
|
|
|
libvirt_qemud_LDFLAGS = $(WARN_CFLAGS) $(LIBXML_LIBS) $(SYSFS_LIBS)
|
2007-06-11 12:04:54 +00:00
|
|
|
libvirt_qemud_DEPENDENCIES = ../src/libvirt.la
|
|
|
|
libvirt_qemud_LDADD = ../src/libvirt.la
|
2007-02-14 01:40:09 +00:00
|
|
|
|
2007-03-07 11:54:29 +00:00
|
|
|
install-data-local:
|
|
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart
|
|
|
|
$(INSTALL_DATA) $(srcdir)/default-network.xml $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
|
2007-03-12 14:10:14 +00:00
|
|
|
sed -i -e "s,</name>,</name>\n <uuid>$(UUID)</uuid>," $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/default.xml
|
2007-03-08 14:00:00 +00:00
|
|
|
test -e $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml || \
|
|
|
|
ln -s ../default.xml $(DESTDIR)$(sysconfdir)/libvirt/qemu/networks/autostart/default.xml
|
2007-05-18 18:36:24 +00:00
|
|
|
mkdir -p $(DESTDIR)$(localstatedir)/log/libvirt/qemu
|
2007-03-08 23:31:28 +00:00
|
|
|
mkdir -p $(DESTDIR)$(localstatedir)/run/libvirt
|
2007-03-13 22:43:22 +00:00
|
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/libvirt
|
2007-03-07 11:54:29 +00:00
|
|
|
|
|
|
|
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 || :
|
2007-05-18 18:36:24 +00:00
|
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt/qemu || :
|
2007-03-08 23:31:28 +00:00
|
|
|
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
2007-03-13 22:43:22 +00:00
|
|
|
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
2007-03-07 11:54:29 +00:00
|
|
|
|
2007-06-11 12:04:54 +00:00
|
|
|
# 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 \
|
2007-06-11 13:24:45 +00:00
|
|
|
remote_generate_stubs.pl rpcgen_fix.pl \
|
2007-06-11 12:04:54 +00:00
|
|
|
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 > $@
|
2007-02-23 12:50:58 +00:00
|
|
|
|
|
|
|
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
|