adding makefile snippet to generate enums and marshal stuff
[platform/upstream/gst-common.git] / glib-gen.mak
1 # these are the variables your Makefile.am should set
2 # the example is based on the colorbalance interface
3
4 #glib_enum_headers=$(colorbalance_headers)
5 #glib_enum_define=GST_COLOR_BALANCE
6 #glib_enum_prefix=gst_color_balance
7 #glib_root=colorbalance
8
9 # these are all the rules generating the relevant files
10 %-marshal.h: %-marshal.list
11         glib-genmarshal --header --prefix=$(glib_enum_prefix)_marshal $^ > $*-marshal.h.tmp
12         mv $*-marshal.h.tmp $*-marshal.h
13
14 %-marshal.c: %-marshal.list
15         echo "#include \"$*-marshal.h\"" >> $*-marshal.c.tmp
16         glib-genmarshal --body --prefix=$(glib_enum_prefix)_marshal $^ >> $*-marshal.c.tmp
17         mv $*-marshal.c.tmp $*-marshal.c
18
19 %-enumtypes.h: $(glib_enum_headers)
20         glib-mkenums \
21         --fhead "#ifndef __$(glib_enum_define)_ENUM_TYPES_H__\n#define __$(glib_enum_define)_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
22         --fprod "/* enumerations from \"@filename@\" */\n" \
23         --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n"         \
24         --ftail "G_END_DECLS\n\n#endif /* __$(glib_enum_define)_ENUM_TYPES_H__ */" \
25         $^ > $@
26
27 %-enumtypes.c: $(glib_enum_headers)
28         @if test "x$(glib_enum_headers)" == "x"; then echo "ERROR: glib_enum_headers is empty, please fix Makefile"; exit 1; fi
29         glib-mkenums \
30         --fhead "#include <$*.h>" \
31         --fprod "\n/* enumerations from \"@filename@\" */" \
32         --vhead "GType\n@enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G@Type@Value values[] = {"     \
33         --vprod "      { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
34         --vtail "      { 0, NULL, NULL }\n    };\n    etype = g_@type@_register_static (\"@EnumName@\", values);\n  }\n  return etype;\n}\n" \
35         $^ > $@