Build infrastructure support

The infrastructure to build libintel_dbus.so.

This was all copied from ibm-dbus-interfaces.

Change-Id: I19fb26d4bf1f9bd170fc05015296743cf1a76b73
Signed-off-by: Yong Li <yong.b.li@linux.intel.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