#!/bin/sh

for i in $*
do
	echo "extern const struct obex_plugin_desc __obex_builtin_$i;"
done

echo
echo "static const struct obex_plugin_desc *__obex_builtin[] = {"

for i in $*
do
	echo "  &__obex_builtin_$i,"
done

echo "  NULL"
echo "};"
