~ubuntu-branches/ubuntu/karmic/xfce4-session/karmic

« back to all changes in this revision

Viewing changes to engines/simple/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2005-11-06 22:01:12 UTC
  • mto: (4.1.1 lenny) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051106220112-5rusox237ymjghsp
Tags: upstream-4.2.3
ImportĀ upstreamĀ versionĀ 4.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
simpledir = $(libdir)/xfce4/splash/engines
 
2
 
 
3
simple_LTLIBRARIES = libsimple.la
 
4
 
 
5
libsimple_la_SOURCES =                                                  \
 
6
        fallback.h                                                      \
 
7
        preview.h                                                       \
 
8
        simple.c
 
9
 
 
10
libsimple_la_CFLAGS =                                                   \
 
11
        -I$(top_srcdir)                                                 \
 
12
        @LIBX11_CFLAGS@                                                 \
 
13
        @LIBXFCEGUI4_CFLAGS@
 
14
 
 
15
libsimple_la_LDFLAGS =                                                  \
 
16
        -avoid-version                                                  \
 
17
        -no-undefined                                                   \
 
18
        -module
 
19
 
 
20
libsimple_la_LIBADD =                                                   \
 
21
        $(top_builddir)/libxfsm/libxfsm-4.2.la
 
22
 
 
23
if HAVE_OS_CYGWIN
 
24
libsimple_la_LIBADD +=                                                  \
 
25
        @XFCE_MCS_MANAGER_LIBS@
 
26
endif
 
27
 
 
28
libsimple_la_DEPENDENCIES =                                             \
 
29
        $(top_builddir)/libxfsm/libxfsm-4.2.la
 
30
        
 
31
EXTRA_DIST =                                                            \
 
32
        fallback.h                                                      \
 
33
        fallback.png                                                    \
 
34
        preview.h                                                       \
 
35
        preview.png
 
36
 
 
37
 
 
38
fallback.h: $(srcdir)/fallback.png
 
39
        gdk-pixbuf-csource --struct --name=fallback                     \
 
40
                $(srcdir)/fallback.png > fallback.h
 
41
 
 
42
preview.h: $(srcdir)/preview.png
 
43
        gdk-pixbuf-csource --struct --name=preview                      \
 
44
                $(srcdir)/preview.png > preview.h
 
45