xref: /openbmc/openpower-dbus-interfaces/generate_yaml_makefile.sh (revision a86aaa9036730203b85666955dcb065ccf044f59)
1#!/bin/sh
2
3cd $1
4
5toplevel_dirs=org
6all_yaml=`find $toplevel_dirs -name "*.yaml"`
7
8echo "nobase_yaml_DATA = \\"
9for i in ${all_yaml};
10do
11    echo "	${i} \\"
12done
13echo
14