diff options
author | Perberos <[email protected]> | 2011-12-01 22:56:10 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 22:56:10 -0300 |
commit | c51ef797a707f4e2c6f9688d4378f2b0e9898a66 (patch) | |
tree | 019ae92bb53c19b30077545cb14743cbd1b57aef /matecomponent/panel-module/Makefile.am | |
download | mate-panel-c51ef797a707f4e2c6f9688d4378f2b0e9898a66.tar.bz2 mate-panel-c51ef797a707f4e2c6f9688d4378f2b0e9898a66.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'matecomponent/panel-module/Makefile.am')
-rw-r--r-- | matecomponent/panel-module/Makefile.am | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/matecomponent/panel-module/Makefile.am b/matecomponent/panel-module/Makefile.am new file mode 100644 index 00000000..8c353127 --- /dev/null +++ b/matecomponent/panel-module/Makefile.am @@ -0,0 +1,51 @@ +panelmodule_LTLIBRARIES = libmate-panel-applets-matecomponent.la +panelmoduledir = $(modulesdir) + +libmate_panel_applets_matecomponent_la_SOURCES = \ + $(CORBA_SRCLIST) \ + mate-panel-applets-matecomponent-module.c \ + mate-panel-applets-manager-matecomponent.c \ + mate-panel-applets-manager-matecomponent.h \ + mate-panel-applet-frame-matecomponent.c \ + mate-panel-applet-frame-matecomponent.h + +libmate_panel_applets_matecomponent_la_CPPFLAGS = \ + $(MATECOMPONENT_CFLAGS) \ + -I$(top_srcdir) \ + -I$(top_srcdir)/mate-panel \ + -I$(top_builddir) \ + -DDATADIR=\""$(datadir)"\" + +libmate_panel_applets_matecomponent_la_LDFLAGS = \ + -export_dynamic -avoid-version -module -no-undefined \ + -export-symbols-regex '^g_io_module_(load|unload|query)' + +libmate_panel_applets_matecomponent_la_LIBADD = \ + $(MATECOMPONENT_LIBS) + +CORBA_SRCLIST = \ + MATE_Panel-stubs.c \ + MATE_Panel-skels.c \ + MATE_Panel-common.c \ + MATE_Panel.h + +$(CORBA_SRCLIST): $(top_srcdir)/matecomponent/idl/MATE_Panel.idl $(MATECORBA_IDL) + $(AM_V_GEN)$(MATECORBA_IDL) -I $(MATECOMPONENT_IDLDIR) -I $(MATECOMPONENT_ACT_IDLDIR) $(top_srcdir)/matecomponent/idl/MATE_Panel.idl + +xmluidir = $(datadir)/mate-2.0/ui +xmlui_DATA = MATE_Panel_Popup.xml + +install-data-hook: + if test -z "$(DESTDIR)" -a "$(GIO_QUERYMODULES)" != "no" ; then \ + $(GIO_QUERYMODULES) $(modulesdir) ; \ + fi +uninstall-local: + if test "$(GIO_QUERYMODULES)" != "no" ; then \ + $(GIO_QUERYMODULES) $(modulesdir) ; \ + fi + +EXTRA_DIST = $(xmlui_DATA) + +CLEANFILES = $(CORBA_SRCLIST) + +-include $(top_srcdir)/git.mk |