summaryrefslogtreecommitdiff
path: root/src/genbuiltin
blob: 39f773527501843f7d65582124f12ca59b7d7085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

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

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

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

echo "  NULL"
echo "};"