blob: 062651f1f17e7c9b7d1c642baaac52c96561b84c (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
NULL =
SUBDIRS = tools
AM_CPPFLAGS = \
-DMETACITY_LIBEXECDIR=\"$(libexecdir)\" \
-DHOST_ALIAS=\"@HOST_ALIAS@\" \
-DMETACITY_LOCALEDIR=\""$(localedir)"\" \
-DMETACITY_PKGDATADIR=\"$(pkgdatadir)\" \
-DMETACITY_DATADIR=\"$(datadir)\" \
-DG_LOG_DOMAIN=\"metacity\" \
-DG_LOG_USE_STRUCTURED=1 \
-DSN_API_NOT_YET_FROZEN=1 \
-I$(srcdir)/core \
-I$(srcdir)/include \
-I$(top_srcdir) \
@METACITY_CFLAGS@ \
$(WARN_CFLAGS) \
$(AM_CFLAGS) \
$(NULL)
metacity_SOURCES= \
core/async-getprop.c \
core/async-getprop.h \
core/atomnames.h \
core/bell.c \
core/bell.h \
core/boxes.c \
include/boxes.h \
core/util.c \
include/util.h \
include/common.h \
compositor/meta-compositor.c \
compositor/meta-compositor-none.c \
compositor/meta-compositor-none.h \
compositor/meta-compositor-private.h \
compositor/meta-compositor-xrender.c \
compositor/meta-compositor-xrender.h \
include/meta-compositor.h \
core/above-tab-keycode.c \
core/constraints.c \
core/constraints.h \
core/core.c \
core/delete.c \
core/display.c \
core/display-private.h \
include/display.h \
ui/draw-workspace.c \
ui/draw-workspace.h \
core/edge-resistance.c \
core/edge-resistance.h \
core/effects.c \
core/effects.h \
core/errors.c \
include/errors.h \
core/eventqueue.c \
core/eventqueue.h \
core/frame.c \
core/frame-private.h \
include/frame.h \
core/group-private.h \
core/group-props.c \
core/group-props.h \
core/group.c \
core/group.h \
core/iconcache.c \
core/iconcache.h \
core/keybindings.c \
core/keybindings.h \
core/main.c \
include/main.h \
core/metacity-Xatomtype.h \
core/place.c \
core/place.h \
core/prefs.c \
include/prefs.h \
core/screen.c \
core/screen-private.h \
include/screen.h \
include/types.h \
core/session.c \
core/session.h \
core/stack.c \
core/stack.h \
core/window-props.c \
core/window-props.h \
core/window.c \
core/window-private.h \
include/window.h \
core/workspace.c \
core/workspace.h \
core/xprops.c \
include/xprops.h \
include/core.h \
include/ui.h \
ui/fixedtip.c \
ui/fixedtip.h \
ui/frames.c \
ui/frames.h \
ui/menu.c \
ui/menu.h \
ui/metaaccellabel.c \
ui/metaaccellabel.h \
ui/meta-tooltip.c \
ui/meta-tooltip.h \
ui/resizepopup.c \
include/resizepopup.h \
ui/tabpopup.c \
include/tabpopup.h \
ui/select-image.c \
ui/select-image.h \
ui/select-workspace.c \
ui/select-workspace.h \
ui/tile-preview.c \
include/tile-preview.h \
ui/ui.c \
ui/ui-private.h \
$(NULL)
bin_PROGRAMS=metacity
metacity_LDADD=@METACITY_LIBS@ $(top_builddir)/libmetacity/libmetacity.la
testboxes_SOURCES=include/util.h core/util.c include/boxes.h core/boxes.c core/testboxes.c
testasyncgetprop_SOURCES=core/async-getprop.h core/async-getprop.c core/testasyncgetprop.c
noinst_PROGRAMS=testboxes testasyncgetprop
testboxes_LDADD= @METACITY_LIBS@
testasyncgetprop_LDADD= @METACITY_LIBS@
-include $(top_srcdir)/git.mk
|