aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am.marshal
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-12 13:07:56 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-12 13:07:56 +0200
commit025c376068f63d8c2aa5899a3c0b1b827370da28 (patch)
tree99d5ce170fa25fd17f5d4569e8b3b3656c9fe44b /Makefile.am.marshal
parentaa6723b9cc3dcac5b9bdd87944a8c99b74f16ba2 (diff)
parentc277aa68455b232c37a4c52b39e948a6ab0b0e11 (diff)
downloadlibayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.tar.gz
libayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.tar.bz2
libayatana-indicator-025c376068f63d8c2aa5899a3c0b1b827370da28.zip
Merge branch 'tari01-pr/move-to-cmake'
Attributes GH PR #38: https://github.com/AyatanaIndicators/libayatana-indicator/pull/38
Diffstat (limited to 'Makefile.am.marshal')
-rw-r--r--Makefile.am.marshal44
1 files changed, 0 insertions, 44 deletions
diff --git a/Makefile.am.marshal b/Makefile.am.marshal
deleted file mode 100644
index a1e1070..0000000
--- a/Makefile.am.marshal
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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 \
- $(srcdir)/$(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 \
- $(srcdir)/$(glib_marshal_list)) > xgen-mc \
- && cp xgen-mc $(marshal_c) \
- && rm -f xgen-mc