blob: 3ebbcfd900c0271ac93133468a05e751d982199b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
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)|" \
$< > $@
@INTLTOOL_XML_NOMERGE_RULE@
gsettings_SCHEMAS = org.mate.panel.applet.mate-window-picker-applet.gschema.xml
@GSETTINGS_RULES@
%.gschema.xml.in: %.gschema.xml.in.in Makefile
$(AM_V_GEN) $(SED) -e 's^\@GETTEXT_PACKAGE\@^$(GETTEXT_PACKAGE)^g' < $< > $@
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) \
$(convert_DATA) \
$(gsettings_SCHEMAS_in_in)
CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) $(gsettings_SCHEMAS_in) $(gsettings_SCHEMAS)
clean:
rm -f $(desktop_DATA) $(desktop_DATA).in $(server_DATA) $(server_DATA).in
|