diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-10-26 18:01:05 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-10-26 18:01:05 +0000 |
commit | d2a58a39bd54720475ef38b0fbf7894d48720d81 (patch) | |
tree | 10583a11118890928e072f0a678f99d7831894fb /perf | |
parent | 87ffaabc2cacbac2b069a491c2b4537052079418 (diff) | |
download | gtk+-d2a58a39bd54720475ef38b0fbf7894d48720d81.tar.gz |
use $(GLIB_MKENUMS) instead of glib-mkenums. (#318582, Damien Carbery)
2005-10-26 Matthias Clasen <mclasen@redhat.com>
* */Makefile.am: use $(GLIB_MKENUMS) instead of
glib-mkenums. (#318582, Damien Carbery)
Diffstat (limited to 'perf')
-rw-r--r-- | perf/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am index 96ac157d03..6a6ae11826 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -72,7 +72,7 @@ marshalers.c: @REBUILD@ marshalers.list typebuiltins.h: stamp-typebuiltins.h @true stamp-typebuiltins.h: @REBUILD@ $(headers_with_enums) Makefile - ( cd $(srcdir) && glib-mkenums \ + ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#ifndef __TYPE_BUILTINS_H__\n#define __TYPE_BUILTINS_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \ --fprod "/* enumerations from \"@filename@\" */\n" \ --vhead "GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define GTK_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ @@ -82,7 +82,7 @@ stamp-typebuiltins.h: @REBUILD@ $(headers_with_enums) Makefile && rm -f xgen-gtbh \ && echo timestamp > $(@F) typebuiltins.c: @REBUILD@ $(headers_with_enums) Makefile - ( cd $(srcdir) && glib-mkenums \ + ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#include \"gtkwidgetprofiler.h\"" \ --ftail "#define __TYPE_BUILTINS_C__\n" \ --fprod "\n/* enumerations from \"@filename@\" */" \ |