source: proiecte/PPPP/gdm/gui/simple-greeter/Makefile.am @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 8.2 KB
Line 
1NULL =
2
3SUBDIRS =                               \
4        libnotificationarea             \
5        $(NULL)
6
7AM_CPPFLAGS = \
8        -I$(top_srcdir)/common                          \
9        -I$(top_srcdir)/gui/simple-greeter/libnotificationarea  \
10        -DDMCONFDIR=\""$(dmconfdir)"\"                  \
11        -DGDMCONFDIR=\"$(gdmconfdir)\"                  \
12        -DDATADIR=\""$(datadir)"\"                      \
13        -DSYSCONFDIR=\""$(sysconfdir)"\"                \
14        -DLIBLOCALEDIR=\""$(prefix)/lib/locale"\"       \
15        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
16        -DGLADEDIR=\""$(pkgdatadir)"\"                  \
17        -DLIBEXECDIR=\""$(libexecdir)"\"                \
18        -DSBINDIR=\""$(sbindir)"\"                      \
19        -DGDM_CACHE_DIR=\""$(localstatedir)/cache/gdm"\"        \
20        -DAT_SPI_REGISTRYD_DIR="\"$(AT_SPI_REGISTRYD_DIR)\""    \
21        $(DEVKIT_POWER_CFLAGS)                          \
22        -DI_KNOW_THE_DEVICEKIT_POWER_API_IS_SUBJECT_TO_CHANGE   \
23        $(DISABLE_DEPRECATED_CFLAGS)                    \
24        $(GTK_CFLAGS)                                   \
25        $(SIMPLE_GREETER_CFLAGS)                        \
26        $(NULL)
27
28@INTLTOOL_SCHEMAS_RULE@
29
30schemasdir   = @GCONF_SCHEMA_FILE_DIR@
31schemas_in_files = gdm-simple-greeter.schemas.in
32schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
33
34noinst_LTLIBRARIES =                    \
35        libgdmuser.la                   \
36        $(null)
37
38libgdmuser_la_SOURCES =                 \
39        gdm-user.c                      \
40        gdm-user.h                      \
41        gdm-user-private.h              \
42        gdm-user-manager.c              \
43        gdm-user-manager.h              \
44        $(NULL)
45
46libgdmuser_la_CFLAGS =                  \
47        $(SIMPLE_GREETER_CFLAGS)        \
48        $(NULL)
49
50libgdmuser_la_LIBADD =                  \
51        $(NULL)
52
53libgdmuser_la_LDFLAGS =         \
54        -export-dynamic         \
55        $(NULL)
56
57noinst_PROGRAMS =                       \
58        test-filesystem-type            \
59        test-greeter-login-window       \
60        test-greeter-panel              \
61        test-language-chooser           \
62        test-layout-chooser             \
63        test-languages                  \
64        test-sessions                   \
65        test-remote-login-window        \
66        test-user-chooser               \
67        test-user-manager               \
68        $(NULL)
69
70test_greeter_login_window_SOURCES =     \
71        test-greeter-login-window.c     \
72        gdm-timer.h                     \
73        gdm-timer.c                     \
74        gdm-greeter-login-window.h      \
75        gdm-greeter-login-window.c      \
76        gdm-scrollable-widget.h         \
77        gdm-scrollable-widget.c         \
78        gdm-chooser-widget.h            \
79        gdm-chooser-widget.c            \
80        gdm-sessions.h                  \
81        gdm-sessions.c                  \
82        gdm-cell-renderer-timer.h       \
83        gdm-cell-renderer-timer.c       \
84        gdm-user-chooser-widget.h       \
85        gdm-user-chooser-widget.c       \
86        gdm-user-chooser-dialog.h       \
87        gdm-user-chooser-dialog.c       \
88        $(NULL)
89
90test_greeter_login_window_LDADD =       \
91        $(top_builddir)/common/libgdmcommon.la  \
92        libgdmuser.la                   \
93        $(COMMON_LIBS)                  \
94        $(SIMPLE_GREETER_LIBS)          \
95        $(DEVKIT_POWER_LIBS)            \
96        $(RBAC_LIBS)                    \
97        $(NULL)
98
99test_greeter_panel_SOURCES =    \
100        test-greeter-panel.c    \
101        gdm-greeter-panel.h     \
102        gdm-greeter-panel.c     \
103        gdm-clock-widget.h      \
104        gdm-clock-widget.c      \
105        gdm-option-widget.h     \
106        gdm-option-widget.c     \
107        gdm-recent-option-widget.h      \
108        gdm-recent-option-widget.c      \
109        gdm-languages.h                 \
110        gdm-languages.c                 \
111        gdm-cell-renderer-timer.h       \
112        gdm-cell-renderer-timer.c       \
113        gdm-timer.h                     \
114        gdm-timer.c                     \
115        gdm-scrollable-widget.h         \
116        gdm-scrollable-widget.c         \
117        gdm-chooser-widget.h            \
118        gdm-chooser-widget.c            \
119        gdm-language-chooser-widget.h   \
120        gdm-language-chooser-widget.c   \
121        locarchive.h                    \
122        gdm-language-chooser-dialog.h   \
123        gdm-language-chooser-dialog.c   \
124        gdm-language-option-widget.h    \
125        gdm-language-option-widget.c    \
126        gdm-layout-chooser-widget.h     \
127        gdm-layout-chooser-widget.c     \
128        gdm-layout-chooser-dialog.h     \
129        gdm-layout-chooser-dialog.c     \
130        gdm-layout-option-widget.h      \
131        gdm-layout-option-widget.c      \
132        gdm-layouts.h                   \
133        gdm-layouts.c                   \
134        gdm-sessions.h                  \
135        gdm-sessions.c                  \
136        gdm-session-option-widget.h     \
137        gdm-session-option-widget.c     \
138        $(NULL)
139
140test_greeter_panel_LDADD =      \
141        $(top_builddir)/common/libgdmcommon.la  \
142        $(top_builddir)/gui/simple-greeter/libnotificationarea/libnotificationarea.la   \
143        $(SIMPLE_GREETER_LIBS)          \
144        $(GTK_LIBS)                     \
145        $(GCONF_LIBS)                   \
146        $(LIBXKLAVIER_LIBS)             \
147        $(NULL)
148
149test_remote_login_window_SOURCES =      \
150        test-remote-login-window.c      \
151        gdm-remote-login-window.h       \
152        gdm-remote-login-window.c       \
153        $(NULL)
154
155test_remote_login_window_LDADD =        \
156        $(GTK_LIBS)                     \
157        $(top_builddir)/common/libgdmcommon.la  \
158        $(NULL)
159
160test_filesystem_type_SOURCES =  \
161        test-filesystem-type.c  \
162        $(NULL)
163
164test_filesystem_type_LDADD =    \
165        $(COMMON_LIBS)                  \
166        $(NULL)
167
168test_language_chooser_SOURCES =         \
169        test-language-chooser.c         \
170        gdm-cell-renderer-timer.h       \
171        gdm-cell-renderer-timer.c       \
172        gdm-timer.h                     \
173        gdm-timer.c                     \
174        gdm-scrollable-widget.h         \
175        gdm-scrollable-widget.c         \
176        gdm-chooser-widget.h            \
177        gdm-chooser-widget.c            \
178        gdm-languages.h                 \
179        gdm-languages.c                 \
180        gdm-language-chooser-widget.h   \
181        gdm-language-chooser-widget.c   \
182        locarchive.h                    \
183        gdm-language-chooser-dialog.h   \
184        gdm-language-chooser-dialog.c   \
185        $(NULL)
186
187test_language_chooser_LDADD =   \
188        $(GTK_LIBS)             \
189        $(NULL)
190
191test_layout_chooser_SOURCES =   \
192        test-layout-chooser.c           \
193        gdm-cell-renderer-timer.h       \
194        gdm-cell-renderer-timer.c       \
195        gdm-timer.h                     \
196        gdm-timer.c                     \
197        gdm-scrollable-widget.h         \
198        gdm-scrollable-widget.c         \
199        gdm-chooser-widget.h            \
200        gdm-chooser-widget.c            \
201        gdm-layouts.h                   \
202        gdm-layouts.c                   \
203        gdm-layout-chooser-widget.h     \
204        gdm-layout-chooser-widget.c     \
205        gdm-layout-chooser-dialog.h     \
206        gdm-layout-chooser-dialog.c     \
207        $(NULL)
208
209test_layout_chooser_LDADD =             \
210        $(GTK_LIBS)                     \
211        $(LIBXKLAVIER_LIBS)             \
212        $(NULL)
213
214test_languages_SOURCES =                \
215        test-languages.c                \
216        gdm-languages.h                 \
217        gdm-languages.c                 \
218        locarchive.h                    \
219        $(NULL)
220
221test_languages_LDADD =          \
222        $(GTK_LIBS)             \
223        $(NULL)
224
225test_sessions_SOURCES =                 \
226        test-sessions.c         \
227        gdm-sessions.h                  \
228        gdm-sessions.c                  \
229        $(NULL)
230
231test_sessions_LDADD =           \
232        $(GTK_LIBS)             \
233        $(NULL)
234
235test_user_chooser_SOURCES =             \
236        test-user-chooser.c             \
237        gdm-timer.h                     \
238        gdm-timer.c                     \
239        gdm-cell-renderer-timer.h       \
240        gdm-cell-renderer-timer.c       \
241        gdm-scrollable-widget.h         \
242        gdm-scrollable-widget.c         \
243        gdm-chooser-widget.h            \
244        gdm-chooser-widget.c            \
245        gdm-user-chooser-widget.h       \
246        gdm-user-chooser-widget.c       \
247        gdm-user-chooser-dialog.h       \
248        gdm-user-chooser-dialog.c       \
249        $(NULL)
250
251test_user_chooser_LDADD =       \
252        libgdmuser.la           \
253        $(COMMON_LIBS)          \
254        $(SIMPLE_GREETER_LIBS)  \
255        $(NULL)
256
257test_user_manager_SOURCES =     \
258        test-user-manager.c     \
259        $(NULL)
260
261test_user_manager_LDADD =       \
262        libgdmuser.la           \
263        $(COMMON_LIBS)          \
264        $(SIMPLE_GREETER_LIBS)  \
265        $(NULL)
266
267libexec_PROGRAMS =                      \
268        gdm-simple-greeter
269
270gdm_simple_greeter_SOURCES =            \
271        greeter-main.c                  \
272        gdm-timer.h                     \
273        gdm-timer.c                     \
274        gdm-cell-renderer-timer.h       \
275        gdm-cell-renderer-timer.c       \
276        gdm-scrollable-widget.h         \
277        gdm-scrollable-widget.c         \
278        gdm-chooser-widget.h            \
279        gdm-chooser-widget.c            \
280        gdm-greeter-client.h            \
281        gdm-greeter-client.c            \
282        gdm-greeter-session.h           \
283        gdm-greeter-session.c           \
284        gdm-greeter-login-window.c      \
285        gdm-greeter-login-window.h      \
286        gdm-remote-login-window.c       \
287        gdm-remote-login-window.h       \
288        gdm-greeter-panel.h             \
289        gdm-greeter-panel.c             \
290        gdm-clock-widget.h              \
291        gdm-clock-widget.c              \
292        gdm-option-widget.h             \
293        gdm-option-widget.c             \
294        gdm-recent-option-widget.h      \
295        gdm-recent-option-widget.c      \
296        gdm-languages.h                 \
297        gdm-languages.c                 \
298        gdm-language-chooser-widget.h   \
299        gdm-language-chooser-widget.c   \
300        gdm-layout-chooser-widget.h     \
301        gdm-layout-chooser-widget.c     \
302        gdm-layout-chooser-dialog.h     \
303        gdm-layout-chooser-dialog.c     \
304        gdm-layout-option-widget.h      \
305        gdm-layout-option-widget.c      \
306        gdm-layouts.h                   \
307        gdm-layouts.c                   \
308        locarchive.h                    \
309        gdm-language-chooser-dialog.h   \
310        gdm-language-chooser-dialog.c   \
311        gdm-language-option-widget.h    \
312        gdm-language-option-widget.c    \
313        gdm-sessions.h                  \
314        gdm-sessions.c                  \
315        gdm-session-option-widget.h     \
316        gdm-session-option-widget.c     \
317        gdm-user-chooser-widget.h       \
318        gdm-user-chooser-widget.c       \
319        $(NULL)
320
321gdm_simple_greeter_LDADD =              \
322        $(top_builddir)/common/libgdmcommon.la  \
323        libgdmuser.la                   \
324        $(top_builddir)/gui/simple-greeter/libnotificationarea/libnotificationarea.la   \
325        $(COMMON_LIBS)                  \
326        $(EXTRA_GREETER_LIBS)           \
327        $(SIMPLE_GREETER_LIBS)          \
328        $(RBAC_LIBS)                    \
329        $(LIBXKLAVIER_LIBS)             \
330        $(DEVKIT_POWER_LIBS)            \
331        $(NULL)
332
333gladedir = $(pkgdatadir)
334glade_DATA =                                    \
335        gdm-greeter-login-window.glade          \
336        $(NULL)
337
338EXTRA_DIST =                    \
339        $(schemas_in_files)     \
340        $(glade_DATA)           \
341        $(NULL)
342
343DISTCLEANFILES =                        \
344        $(schemas_DATA)                 \
345        $(NULL)
346
347MAINTAINERCLEANFILES =                  \
348        *~                              \
349        Makefile.in
350
351if GCONF_SCHEMAS_INSTALL
352# don't do this if we are building in eg. rpm
353install-data-local: $(schemas_DATA)
354        if test -z "$(DESTDIR)" ; then \
355                for p in $(schemas_DATA) ; do \
356                        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/gui/simple-greeter/$$p ; \
357                done \
358        fi
359else
360install-data-local:
361endif
Note: See TracBrowser for help on using the repository browser.