Build infrastructure
The infrastructure to build libibm_dbus.so.
This was all copied from openpower-dbus-interfaces.
Change-Id: Ic9f656a1b59078c81801da3594f0b930411cf47b
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/generate_yaml_makefile.sh b/generate_yaml_makefile.sh
new file mode 100755
index 0000000..a157d55
--- /dev/null
+++ b/generate_yaml_makefile.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+cd $1
+
+toplevel_dirs=com
+all_yaml=`find $toplevel_dirs -name "*.yaml"`
+
+echo "nobase_yaml_DATA = \\"
+for i in ${all_yaml};
+do
+ echo " ${i} \\"
+done
+echo