blob: b827cb807a29c25eb3c78deaf883d0ff323330d2 (
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
|
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@
gsettingsschema_in_files = org.mate.maximus.gschema.xml.in
gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml)
@GSETTINGS_RULES@
desktopdir=$(sysconfdir)/xdg/autostart
dist_desktop_DATA=mate-maximus-autostart.desktop
man_MANS = mate-maximus.1
CLEANFILES = $(gsettings_SCHEMAS) *.gschema.valid
EXTRA_DIST = $(gsettingsschema_in_files) $(man_MANS)
|