blob: 139c675de7227fdc91686a3243efef71563351fd (
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
|
bin_PROGRAMS=mate-maximus
PKGDATADIR = $(datadir)/mate-maximus
DATADIR = $(datadir)
SYSCONFDIR = $(sysconfdir)
AM_CFLAGS = \
$(MAXIMUS_DEPS_CFLAGS) \
$(GCC_FLAGS) \
-I$(top_builddir) \
-I$(top_srcdir) \
-I$(top_srcdir)/tidy \
-D_GNU_SOURCE \
-DPKGDATADIR=\"$(PKGDATADIR)\" \
-DDATADIR=\"$(DATADIR)\" \
-DSYSCONFDIR=\"$(SYSCONFDIR)\"
mate_maximus_LDADD = \
$(MAXIMUS_DEPS_LIBS)
mate_maximus_SOURCES = \
main.c \
eggaccelerators.c \
eggaccelerators.h \
maximus-app.c \
maximus-app.h \
maximus-bind.c \
maximus-bind.h \
tomboykeybinder.c \
tomboykeybinder.h \
xutils.c \
xutils.h
@INTLTOOL_XML_NOMERGE_RULE@
gsettings_SCHEMAS = org.mate.maximus.gschema.xml
gsettings_SCHEMAS_in_in = $(gsettings_SCHEMAS:.xml=.xml.in.in)
@GSETTINGS_RULES@
%.gschema.xml.in: %.gschema.xml.in.in Makefile
$(AM_V_GEN) $(SED) -e 's^\@GETTEXT_PACKAGE\@^$(GETTEXT_PACKAGE)^g' < $< > $@
convertdir = $(datadir)/MateConf/gsettings
convert_DATA = mate-maximus.convert
desktopdir=$(sysconfdir)/xdg/autostart
dist_desktop_DATA=mate-maximus-autostart.desktop
CLEANFILES = $(gsettings_SCHEMAS) \
$(gsettings_SCHEMAS_in)
EXTRA_DIST = $(gsettings_SCHEMAS_in_in) $(convert_DATA)
|