diff options
author | Ted Gould <ted@canonical.com> | 2009-07-21 11:37:51 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-07-21 11:37:51 -0500 |
commit | 5cbbca20e09a1d7281c566b01b1fc2b50a81d0b5 (patch) | |
tree | 77ceb4656c1f16f966f16b37e4ec16b07f577976 /libindicate/Makefile.am | |
parent | e3a0b5a84b1da2dd632972dccb0dad35859d5957 (diff) | |
download | libayatana-indicator-5cbbca20e09a1d7281c566b01b1fc2b50a81d0b5.tar.gz libayatana-indicator-5cbbca20e09a1d7281c566b01b1fc2b50a81d0b5.tar.bz2 libayatana-indicator-5cbbca20e09a1d7281c566b01b1fc2b50a81d0b5.zip |
Creating the server marshallers that we need
Diffstat (limited to 'libindicate/Makefile.am')
-rw-r--r-- | libindicate/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libindicate/Makefile.am b/libindicate/Makefile.am index 3ad6247..a35cf35 100644 --- a/libindicate/Makefile.am +++ b/libindicate/Makefile.am @@ -9,6 +9,7 @@ EXTRA_DIST = \ indicate-interface.xml \ indicate-listener.xml \ listener-marshal.list \ + server-marshal.list \ indicate.pc.in BUILT_SOURCES = \ @@ -18,6 +19,8 @@ BUILT_SOURCES = \ dbus-listener-client.h \ listener-marshal.c \ listener-marshal.h \ + server-marshal.c \ + server-marshal.h \ $(ENUM_FILE).h \ $(ENUM_FILE).c @@ -45,6 +48,8 @@ libindicate_la_SOURCES = \ dbus-listener-client.h \ indicate-enum-types.c \ server.c \ + server-marshal.c \ + server-marshal.h \ listener.c \ listener-marshal.c \ listener-marshal.h \ @@ -101,6 +106,16 @@ listener-marshal.c: $(srcdir)/listener-marshal.list --prefix=_indicate_listener_marshal $(srcdir)/listener-marshal.list \ > listener-marshal.c +server-marshal.h: $(srcdir)/server-marshal.list + glib-genmarshal --header \ + --prefix=_indicate_server_marshal $(srcdir)/server-marshal.list \ + > server-marshal.h + +server-marshal.c: $(srcdir)/server-marshal.list + glib-genmarshal --body \ + --prefix=_indicate_server_marshal $(srcdir)/server-marshal.list \ + > server-marshal.c + pkgconfig_DATA = indicate.pc pkgconfigdir = $(libdir)/pkgconfig |