aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am.marshal
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2009-10-16 12:59:39 -0500
committerTed Gould <ted@canonical.com>2009-10-16 12:59:39 -0500
commit8ad3fb0c2a9e0542235427f96f797c9bcf90d2b3 (patch)
treeb4ce13f024ea13bb3de08e3078de662c62d353c4 /Makefile.am.marshal
parent1101075695054df49e96d815fec28b4e9ea0287a (diff)
downloadayatana-indicator-application-8ad3fb0c2a9e0542235427f96f797c9bcf90d2b3.tar.gz
ayatana-indicator-application-8ad3fb0c2a9e0542235427f96f797c9bcf90d2b3.tar.bz2
ayatana-indicator-application-8ad3fb0c2a9e0542235427f96f797c9bcf90d2b3.zip
Stealing these makefile segments to build enums and marshallers
Diffstat (limited to 'Makefile.am.marshal')
-rw-r--r--Makefile.am.marshal45
1 files changed, 45 insertions, 0 deletions
diff --git a/Makefile.am.marshal b/Makefile.am.marshal
new file mode 100644
index 0000000..8b30d4f
--- /dev/null
+++ b/Makefile.am.marshal
@@ -0,0 +1,45 @@
+# Rules for generating marshal files using glib-genmarshal
+#
+# Define:
+# glib_marshal_list = marshal list file
+# glib_marshal_prefix = prefix for marshal functions
+#
+# before including Makefile.am.marshal. You will also need to have
+# the following targets already defined:
+#
+# CLEANFILES
+# DISTCLEANFILES
+# BUILT_SOURCES
+# EXTRA_DIST
+#
+# Author: Emmanuele Bassi <ebassi@linux.intel.com>
+
+marshal_h = $(glib_marshal_list:.list=.h)
+marshal_c = $(glib_marshal_list:.list=.c)
+
+CLEANFILES += stamp-marshal
+DISTCLEANFILES += $(marshal_h) $(marshal_c)
+BUILT_SOURCES += $(marshal_h) $(marshal_c)
+EXTRA_DIST += $(glib_marshal_list)
+
+stamp-marshal: $(glib_marshal_list)
+ $(QUIET_GEN)$(GLIB_GENMARSHAL) \
+ --prefix=$(glib_marshal_prefix) \
+ --header \
+ $(glib_marshal_list) > xgen-mh \
+ && (cmp -s xgen-mh $(marshal_h) || cp -f xgen-mh $(marshal_h)) \
+ && rm -f xgen-mh \
+ && echo timestamp > $(@F)
+
+$(marshal_h): stamp-marshal
+ @true
+
+$(marshal_c): $(marshal_h)
+ $(QUIET_GEN)(echo "#include \"$(marshal_h)\"" ; \
+ $(GLIB_GENMARSHAL) \
+ --prefix=$(glib_marshal_prefix) \
+ --body \
+ $(glib_marshal_list)) > xgen-mc \
+ && cp xgen-mc $(marshal_c) \
+ && rm -f xgen-mc
+