From c51ef797a707f4e2c6f9688d4378f2b0e9898a66 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 22:56:10 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- libmate-panel-applet/Makefile.am | 143 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 libmate-panel-applet/Makefile.am (limited to 'libmate-panel-applet/Makefile.am') diff --git a/libmate-panel-applet/Makefile.am b/libmate-panel-applet/Makefile.am new file mode 100644 index 00000000..a8b8ae2b --- /dev/null +++ b/libmate-panel-applet/Makefile.am @@ -0,0 +1,143 @@ +lib_LTLIBRARIES = libmate-panel-applet-3.la +noinst_PROGRAMS = test-dbus-applet + +AM_CPPFLAGS = \ + $(LIBMATE_PANEL_APPLET_CFLAGS) \ + -I$(top_builddir)/libmate-panel-applet \ + -DMATELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ + $(DISABLE_DEPRECATED_CFLAGS) + +AM_CFLAGS = $(WARN_CFLAGS) + +libmate_panel_appletincludedir = $(includedir)/mate-panel-3.0/libmate-panel-applet +libmate_panel_appletinclude_HEADERS = \ + mate-panel-applet.h \ + mate-panel-applet-mateconf.h \ + mate-panel-applet-enums.h + +libmate_panel_applet_3_la_SOURCES = \ + $(BUILT_SOURCES) \ + mate-panel-applet.h \ + mate-panel-applet.c \ + mate-panel-applet-factory.h \ + mate-panel-applet-factory.c \ + mate-panel-applet-mateconf.c \ + mate-panel-applet-mateconf.h + +libmate_panel_applet_3_la_LIBADD = \ + $(LIBMATE_PANEL_APPLET_LIBS) \ + $(X_LIBS) + +libmate_panel_applet_3_la_LDFLAGS = \ + -version-info $(LIB_MATE_PANEL_APPLET_LT_VERSION) \ + -no-undefined + +test_dbus_applet_LDADD = \ + $(LIBMATE_PANEL_APPLET_LIBS) \ + libmate-panel-applet-3.la + +$(libmate_panel_applet_3_la_OBJECTS) $(test_dbus_applet_OBJECTS): $(BUILT_SOURCES) + +mate-panel-applet-marshal.h: mate-panel-applet-marshal.list $(GLIB_GENMARSHAL) + $(AM_V_GEN)$(GLIB_GENMARSHAL) $< --header --prefix=mate_panel_applet_marshal > $@ + +mate-panel-applet-marshal.c: mate-panel-applet-marshal.list $(GLIB_GENMARSHAL) + $(AM_V_GEN)echo "#include \"mate-panel-applet-marshal.h\"" > $@ && \ + $(GLIB_GENMARSHAL) $< --body --prefix=mate_panel_applet_marshal >> $@ + +mate_panel_applet_enum_headers = $(top_srcdir)/libmate-panel-applet/mate-panel-applet.h + +mate-panel-applet-enums.c: @REBUILD@ $(mate_panel_applet_enum_headers) + $(AM_V_GEN)glib-mkenums \ + --fhead "#include \n" \ + --fhead "#include \"mate-panel-applet-enums.h\"\n\n" \ + --fprod "\n/* enumerations from \"@filename@\" */" \ + --fprod "\n#include \"@filename@\"\n" \ + --vhead "static const G@Type@Value _@enum_name@_values[] = {" \ + --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \ + --vtail " { 0, NULL, NULL }\n};\n\n" \ + --vtail "GType\n@enum_name@_get_type (void)\n{\n" \ + --vtail " static GType type = 0;\n\n" \ + --vtail " if (!type)\n" \ + --vtail " type = g_@type@_register_static (\"@EnumName@\", _@enum_name@_values);\n\n" \ + --vtail " return type;\n}\n\n" \ + $(mate_panel_applet_enum_headers) > $@ + +mate-panel-applet-enums.h: @REBUILD@ $(mate_panel_applet_enum_headers) + $(AM_V_GEN)glib-mkenums \ + --fhead "#ifndef __MATE_PANEL_APPLET_ENUMS_H__\n" \ + --fhead "#define __MATE_PANEL_APPLET_ENUMS_H__\n\n" \ + --fhead "#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n" \ + --ftail "#ifdef __cplusplus\n}\n#endif\n\n" \ + --ftail "#endif /* __MATE_PANEL_APPLET_ENUMS_H__ */\n" \ + --fprod "\n/* --- @filename@ --- */" \ + --eprod "#define PANEL_TYPE_@ENUMNAME@ @enum_name@_get_type()\n" \ + --eprod "GType @enum_name@_get_type (void);\n" \ + $(mate_panel_applet_enum_headers) > $@ + +BUILT_SOURCES = \ + mate-panel-applet-enums.c \ + mate-panel-applet-enums.h \ + mate-panel-applet-marshal.c \ + mate-panel-applet-marshal.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libmatepanelapplet-3.0.pc + +appletdir = $(datadir)/mate-panel/applets +applet_in_files = org.mate.panel.TestApplet.mate-panel-applet.in +noinst_DATA = $(applet_in_files:.mate-panel-applet.in=.mate-panel-applet) + +@PANEL_INTLTOOL_MATE_PANEL_APPLET_RULE@ + +EXTRA_DIST = \ + org.mate.panel.TestApplet.mate-panel-applet.in \ + mate-panel-applet-marshal.list \ + libmatepanelapplet-3.0.pc.in \ + libmatepanelapplet-3.0-uninstalled.pc.in + +CLEANFILES = $(BUILT_SOURCES) $(noinst_DATA) + +############################### +# Introspection generation + +-include $(INTROSPECTION_MAKEFILE) +INTROSPECTION_GIRS = +INTROSPECTION_SCANNER_ARGS = --warn-all --add-include-path=$(srcdir) +INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) + +if HAVE_INTROSPECTION +introspection_sources = \ + mate-panel-applet.c \ + mate-panel-applet.h \ + mate-panel-applet-mateconf.c \ + mate-panel-applet-mateconf.h +built_introspection_sources = \ + mate-panel-applet-enums.c \ + mate-panel-applet-enums.h + +MatePanelApplet-3.0.gir: libmate-panel-applet-3.la +MatePanelApplet_3_0_gir_INCLUDES = GObject-2.0 Gtk-2.0 MateConf-2.0 +MatePanelApplet_3_0_gir_CFLAGS = $(AM_CPPFLAGS) +MatePanelApplet_3_0_gir_LIBS = libmate-panel-applet-3.la +MatePanelApplet_3_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_sources)) $(addprefix $(builddir)/,$(built_introspection_sources)) +# When requiring gobject-introspection 0.9.5, use this: +#MatePanelApplet_3_0_gir_SCANNERFLAGS = --identifier-prefix=Panel --symbol-prefix=panel --pkg-export=libmatepanelapplet-3.0 +MatePanelApplet_3_0_gir_SCANNERFLAGS = --strip-prefix=MatePanel --pkg-export=libmatepanelapplet-3.0 +INTROSPECTION_GIRS += MatePanelApplet-3.0.gir + +girdir = $(INTROSPECTION_GIRDIR) +gir_DATA = $(INTROSPECTION_GIRS) + +typelibdir = $(INTROSPECTION_TYPELIBDIR) +typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib) + +CLEANFILES += $(gir_DATA) $(typelib_DATA) +endif + +################################ + +dist-hook: + cd $(distdir) ; rm -f $(CLEANFILES) + +-include $(top_srcdir)/git.mk -- cgit v1.2.1