diff options
author | Stefano Karapetsas <[email protected]> | 2012-07-04 18:01:12 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-07-04 18:01:12 +0200 |
commit | e48fc61bf4cf43a90b7ddf16e3cbb3b247333c89 (patch) | |
tree | 15722913e64320b18a09b2452d0a382ebeb953e9 /mate-window-picker-applet/Makefile.am | |
download | mate-netbook-e48fc61bf4cf43a90b7ddf16e3cbb3b247333c89.tar.bz2 mate-netbook-e48fc61bf4cf43a90b7ddf16e3cbb3b247333c89.tar.xz |
Initial release
Diffstat (limited to 'mate-window-picker-applet/Makefile.am')
-rw-r--r-- | mate-window-picker-applet/Makefile.am | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/mate-window-picker-applet/Makefile.am b/mate-window-picker-applet/Makefile.am new file mode 100644 index 0000000..20b39bd --- /dev/null +++ b/mate-window-picker-applet/Makefile.am @@ -0,0 +1,65 @@ +libexec_PROGRAMS=mate-window-picker-applet + +PKGDATADIR = $(datadir)/mate-window-picker-applet +AM_CFLAGS=\ + $(MATEWINDOWPICKER_DEPS_CFLAGS) \ + $(GCC_FLAGS) \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -D_GNU_SOURCE \ + -DMATELOCALEDIR=\""$(datadir)/locale"\" \ + -DPKGDATADIR=\"$(PKGDATADIR)\" \ + -DMATEWINDOWPICKER_MENU_UI_DIR=\""$(xmluidir)"\" + +mate_window_picker_applet_LDADD = \ + $(MATEWINDOWPICKER_DEPS_LIBS) + +mate_window_picker_applet_SOURCES = \ + applet.c \ + task-item.c \ + task-item.h \ + task-list.c \ + task-list.h \ + task-title.c \ + task-title.h + +appletdir = $(datadir)/mate-panel/applets +applet_in_files = org.mate.panel.MateWindowPicker.mate-panel-applet.in +applet_DATA = $(applet_in_files:.mate-panel-applet.in=.mate-panel-applet) + +$(applet_in_files): $(applet_in_files).in Makefile + $(AM_V_GEN)sed \ + -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ + $< > $@ + +org.mate.panel.MateWindowPicker.mate-panel-applet: org.mate.panel.MateWindowPicker.mate-panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache + +APPLET_LOCATION=$(libexecdir)/mate-window-picker-applet + +servicedir = $(datadir)/dbus-1/services +service_in_files = org.mate.panel.applet.MateWindowPickerFactory.service.in +service_DATA = $(service_in_files:.service.in=.service) + +org.mate.panel.applet.MateWindowPickerFactory.service: $(service_in_files) + $(AM_V_GEN)sed \ + -e "s|\@LOCATION\@|$(APPLET_LOCATION)|" \ + $< > $@ + +schemasdir = @MATECONF_SCHEMA_FILE_DIR@ +schemas_in_files = mate-window-picker-applet.schemas.in +schemas_DATA = $(schemas_in_files:.schemas.in=.schemas) +@INTLTOOL_SCHEMAS_RULE@ + +xmluidir = $(datadir)/mate-panel/ui +xmlui_DATA = mate-window-picker-applet-menu.xml + +EXTRA_DIST = \ + org.mate.panel.MateWindowPicker.panel-applet.in.in \ + $(service_in_files) \ + $(ui_DATA) \ + $(schemas_in_files) + +CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) $(schemas_DATA) + +clean: + rm -f $(desktop_DATA) $(desktop_DATA).in $(server_DATA) $(server_DATA).in |