aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenbackendd/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-07-22 14:37:30 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-07-22 14:37:30 +0100
commit9fe075decce7db2045261794f9ab897a82cba408 (patch)
tree3200a9352121ff405b109fed0f01188c6d302f14 /tools/xenbackendd/Makefile
parent5e3d36c2c840c5da77065b0676c0f2a64fee638a (diff)
downloadxen-9fe075decce7db2045261794f9ab897a82cba408.tar.gz
xen-9fe075decce7db2045261794f9ab897a82cba408.tar.bz2
xen-9fe075decce7db2045261794f9ab897a82cba408.zip
tools: xenbackendd for NetBSD
Attached patch introduces xenbackendd. It is used on NetBSD to launch the hotplug scripts. Later xenbackendd can be improved to also launch qemu-dm as child process and will notice when qemu-dm crashes. The changes the patch makes: - rename hotplug scripts as xenbackendd expects them (current names were taken from pkgsrc) - install hotplug scripts as executable scripts - introduce xenbackendd - build/install/launch on NetBSD only Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Diffstat (limited to 'tools/xenbackendd/Makefile')
-rw-r--r--tools/xenbackendd/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/xenbackendd/Makefile b/tools/xenbackendd/Makefile
new file mode 100644
index 0000000000..4421f7d27e
--- /dev/null
+++ b/tools/xenbackendd/Makefile
@@ -0,0 +1,41 @@
+# Copyright (c) 2009 Advanced Micro Devices, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; under version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+XEN_ROOT=../..
+include $(XEN_ROOT)/tools/Rules.mk
+
+CFLAGS += -Werror
+CFLAGS += $(CFLAGS_libxenstore)
+CPPFLAGS += -DXEN_SCRIPT_DIR="\"$(XEN_SCRIPT_DIR)\""
+LDFLAGS += $(LDFLAGS_libxenstore)
+
+SBIN = xenbackendd
+
+.PHONY: all
+all: build
+
+.PHONY: build
+build: $(SBIN)
+
+.PHONY: install
+install: build
+ $(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
+ $(INSTALL_PROG) xenbackendd $(DESTDIR)$(SBINDIR)
+
+.PHONY: clean
+clean:
+ rm -f $(SBIN) $(DEPS)
+
+
+%: %.c Makefile
+ $(CC) $(CFLAGS) $(CPPFLAGS) $< $(LDFLAGS) -o $@
+
+-include $(DEPS)