blob: efea297291e894052b6857550003f00c9d30ec6b (
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
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DPROCMAN_DATADIR=\""$(datadir)/procman/"\" \
-DMATELOCALEDIR=\""$(datadir)/locale"\" \
-DDATADIR=\""$(datadir)"\" \
@PROCMAN_CFLAGS@
bin_PROGRAMS = mate-system-monitor
mate_system_monitor_SOURCES = \
argv.h argv.cpp \
procman.cpp procman.h \
interface.cpp interface.h \
callbacks.cpp callbacks.h \
load-graph.cpp load-graph.h \
proctable.cpp proctable.h \
prettytable.cpp prettytable.h \
util.cpp util.h \
procactions.cpp procactions.h \
procdialogs.cpp procdialogs.h \
memmaps.cpp memmaps.h \
openfiles.cpp openfiles.h \
smooth_refresh.cpp smooth_refresh.h \
defaulttable.h \
disks.cpp disks.h \
selinux.h selinux.cpp \
procman_matesu.h procman_matesu.cpp \
procman_gksu.h procman_gksu.cpp \
sysinfo.cpp sysinfo.h \
lsof.cpp lsof.h \
selection.cpp selection.h \
settings-keys.cpp settings-keys.h \
iconthemewrapper.cpp iconthemewrapper.h \
e_date.c e_date.h \
gsm_color_button.c gsm_color_button.h
mate_system_monitor_LDADD = @PROCMAN_LIBS@ libbacon.la
noinst_LTLIBRARIES = libbacon.la
libbacon_la_SOURCES = \
bacon-message-connection.c \
bacon-message-connection.h
specdir = $(datadir)/procman
# GSettings schemas, enum files and conversion file
gsettings_ENUM_NAMESPACE = org.mate.system-monitor
gsettings_ENUM_FILES = $(top_srcdir)/src/*.h
gsettings_SCHEMAS = org.mate.system-monitor.gschema.xml
@GSETTINGS_RULES@
@INTLTOOL_XML_NOMERGE_RULE@
%.gschema.xml.in: %.gschema.xml.in.in Makefile
$(AM_V_GEN) $(SED) -e 's^\@GETTEXT_PACKAGE\@^$(GETTEXT_PACKAGE)^g' < $< > $@
convertdir = $(datadir)/MateConf/gsettings
dist_convert_DATA = mate-system-monitor.convert
dist_noinst_DATA = \
$(gsettings_in_file)
CLEANFILES = \
$(gsettings_SCHEMAS) \
$(gsettings_SCHEMAS).in
EXTRA_DIST = \
$(gsettings_SCHEMAS).in.in
MAINTAINERCLEANFILES = $(gsettings_SCHEMAS:.xml=.valid)
|