summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2010-06-24 00:00:17 +0100
committerBastien Nocera <hadess@hadess.net>2010-06-24 00:12:06 +0100
commit5cfe9aaba7279f05b959b5627fd4511587852f7a (patch)
tree3f03d1d677c1e39f097c5d5a830ccaa225d3fb13
parentd521157ec62f4c25efa4f55df948ac63e2cba7c8 (diff)
downloadlibnotify-5cfe9aaba7279f05b959b5627fd4511587852f7a.tar.gz
Fix compile warnings for the C marshal file
And quiet down the enum and marshal generations
-rw-r--r--libnotify/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/libnotify/Makefile.am b/libnotify/Makefile.am
index e1be97a..ca6891c 100644
--- a/libnotify/Makefile.am
+++ b/libnotify/Makefile.am
@@ -37,17 +37,17 @@ libnotify_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
notify-marshal.h: notify-marshal.list
- $(GLIB_GENMARSHAL) --prefix=$(MARSHAL_PREFIX) notify-marshal.list \
+ $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=$(MARSHAL_PREFIX) notify-marshal.list \
--header > notify-marshal.h
notify-marshal.c: notify-marshal.list
- $(GLIB_GENMARSHAL) --prefix=$(MARSHAL_PREFIX) notify-marshal.list \
- --body > notify-marshal.c
+ $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=$(MARSHAL_PREFIX) notify-marshal.list \
+ --header --body > notify-marshal.c
$(ENUM_FILE).h: s-enum-types-h
@true
s-enum-types-h: $(notify_headers) Makefile
- ( cd $(srcdir) && glib-mkenums \
+ $(AM_V_GEN) ( cd $(srcdir) && glib-mkenums \
--fhead "#ifndef _NOTIFY_ENUM_TYPES_H_\n#define _NOTIFY_ENUM_TYPES_H_\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
--fprod "/* enumerations from \"@filename@\" */\n" \
--vhead "GType @enum_name@_get_type(void);\n#define NOTIFY_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
@@ -60,7 +60,7 @@ s-enum-types-h: $(notify_headers) Makefile
$(ENUM_FILE).c: s-enum-types-c
@true
s-enum-types-c: $(notify_headers) Makefile
- ( cd $(srcdir) && glib-mkenums \
+ $(AM_V_GEN) ( cd $(srcdir) && glib-mkenums \
--fhead "#include <libnotify/notify.h>" \
--fprod "\n/* enumerations from \"@filename@\" */" \
--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[] = {" \