~ubuntu-branches/ubuntu/maverick/gnome-session/maverick

« back to all changes in this revision

Viewing changes to splash/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2009-04-14 19:24:09 UTC
  • mto: (1.3.1 upstream) (2.1.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: james.westby@ubuntu.com-20090414192409-koxw9bt1lf1zr01z
ImportĀ upstreamĀ versionĀ 2.26.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
INCLUDES =                                      \
 
4
        -I$(top_srcdir)/egg                     \
 
5
        -DLOCALE_DIR=\""$(datadir)/locale"\"    \
 
6
        $(WARN_CFLAGS)                          \
 
7
        $(DISABLE_DEPRECATED_CFLAGS)            \
 
8
        $(SPLASH_CFLAGS)
 
9
 
 
10
LDADD =                                         \
 
11
        $(top_builddir)/egg/libeggsmclient-gnome.la \
 
12
        $(SPLASH_LIBS)
 
13
 
 
14
helperdir = $(pkglibdir)/helpers
 
15
helper_PROGRAMS =                               \
 
16
        gnome-session-splash                    \
 
17
        $(NULL)
 
18
 
 
19
default_sessiondir = $(datadir)/gnome/autostart
 
20
default_session_in_in_files = gnome-session-splash.desktop.in.in
 
21
default_session_in_files = $(default_session_in_in_files:.desktop.in.in=.desktop.in)
 
22
default_session_DATA = $(default_session_in_files:.desktop.in=.desktop)
 
23
 
 
24
gnome_session_splash_SOURCES =                  \
 
25
        gnome-session-splash.c                  \
 
26
        splash-window.c                         \
 
27
        splash-window.h
 
28
gnome_session_splash_LDADD =                    \
 
29
        $(LDADD)
 
30
 
 
31
@INTLTOOL_DESKTOP_RULE@
 
32
 
 
33
%.desktop.in: %.desktop.in.in Makefile.am
 
34
        sed -e 's,\@helperdir\@,$(helperdir),' \
 
35
                < $< > $@
 
36
 
 
37
EXTRA_DIST =                                    \
 
38
        README                                  \
 
39
        $(NULL)
 
40
 
 
41
CLEANFILES =                                    \
 
42
        $(default_session_DATA)                 \
 
43
        $(default_session_in_files)
 
44
 
 
45
DISTCLEANFILES =                                        \
 
46
        $(default_session_in_in_files)