blob: 8ab9f7d0ba36f071f6ecbbc938a4f2f259c16c61 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
## Process this file with automake to produce Makefile.in
SUBDIRS = pixmaps docs
ui_files = stickynotes-applet-menu.xml
builder_files = stickynotes.ui
applet_in_files = org.mate.applets.StickyNotesApplet.mate-panel-applet.in
service_in_files = org.mate.panel.applet.StickyNotesAppletFactory.service.in
schemas_in_files = stickynotes.schemas.in
if BUILD_STICKYNOTES_APPLET
AM_CPPFLAGS = \
-I. \
-I$(srcdir) \
$(STICKYNOTES_CFLAGS) \
$(MATE_APPLETS4_CFLAGS) \
$(MATEDESKTOP_CFLAGS) \
$(LIBWNCK_CFLAGS) \
$(XML2_CFLAGS) \
-DSTICKYNOTES_MENU_UI_DIR=\""$(uidir)"\"
libexec_PROGRAMS = stickynotes-applet
stickynotes_applet_SOURCES = \
util.h \
util.c \
stickynotes.h \
stickynotes_callbacks.h \
stickynotes_applet.h \
stickynotes_applet_callbacks.h \
stickynotes.c \
stickynotes_callbacks.c \
stickynotes_applet.c \
stickynotes_applet_callbacks.c
stickynotes_applet_LDADD = \
$(STICKYNOTES_LIBS) \
$(MATE_APPLETS4_LIBS) \
$(MATEDESKTOP_LIBS) \
$(LIBWNCK_LIBS) \
$(XML2_LIBS) \
-lX11
builder_DATA = $(builder_files)
uidir = $(datadir)/mate/ui
ui_DATA = $(ui_files)
@INTLTOOL_XML_NOMERGE_RULE@
stickynotes_gschema_in_files = org.mate.stickynotes.gschema.xml.in
gsettings_SCHEMAS = $(stickynotes_gschema_in_files:.xml.in=.xml)
@GSETTINGS_RULES@
appletdir = $(datadir)/mate-panel/applets
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|\@LIBEXECDIR\@|$(libexecdir)|" \
-e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \
$< > $@
%.mate-panel-applet: %.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
servicedir = $(datadir)/dbus-1/services
service_DATA = $(service_in_files:.service.in=.service)
org.mate.panel.applet.StickyNotesAppletFactory.service: $(service_in_files)
$(AM_V_GEN)sed \
-e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
$< > $@
CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) $(gsettings_SCHEMAS) *.gschema.valid
endif
EXTRA_DIST = \
$(builder_files) \
$(ui_files) \
$(stickynotes_gschema_in_files) \
$(service_in_files) \
org.mate.applets.StickyNotesApplet.mate-panel-applet.in.in
-include $(top_srcdir)/git.mk
|