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

« back to all changes in this revision

Viewing changes to engines/mice/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
micedir = $(libdir)/xfce4/splash/engines
 
2
 
 
3
mice_LTLIBRARIES = libmice.la
 
4
 
 
5
libmice_la_SOURCES =                                                    \
 
6
        preview.h                                                       \
 
7
        slide.h                                                         \
 
8
        mice.c
 
9
 
 
10
libmice_la_CFLAGS =                                                     \
 
11
        -I$(top_srcdir)                                                 \
 
12
        @LIBXFCEGUI4_CFLAGS@
 
13
 
 
14
libmice_la_LDFLAGS =                                                    \
 
15
        -avoid-version                                                  \
 
16
        -no-undefined                                                   \
 
17
        -module
 
18
 
 
19
libmice_la_LIBADD =                                                     \
 
20
        $(top_builddir)/libxfsm/libxfsm-4.2.la
 
21
 
 
22
if HAVE_OS_CYGWIN
 
23
libmice_la_LIBADD +=                                                    \
 
24
        @XFCE_MCS_MANAGER_LIBS@
 
25
endif
 
26
 
 
27
libmice_la_DEPENDENCIES =                                               \
 
28
        $(top_builddir)/libxfsm/libxfsm-4.2.la
 
29
 
 
30
noinst_PROGRAMS =                                                       \
 
31
        generate
 
32
 
 
33
generate_SOURCES =                                                      \
 
34
        generate.c
 
35
 
 
36
generate_CFLAGS =                                                       \
 
37
        @LIBXFCEGUI4_CFLAGS@
 
38
 
 
39
generate_LDADD =                                                        \
 
40
        @LIBXFCEGUI4_LIBS@
 
41
 
 
42
 
 
43
EXTRA_DIST =                                                            \
 
44
        preview.h                                                       \
 
45
        preview.png                                                     \
 
46
        slide.h                                                         \
 
47
        slide.png
 
48
 
 
49
preview.h: $(srcdir)/preview.png
 
50
        gdk-pixbuf-csource --struct --name=preview                      \
 
51
                $(srcdir)/preview.png > preview.h
 
52
 
 
53
slide.h: $(srcdir)/slide.png
 
54
        gdk-pixbuf-csource --struct --name=slide                        \
 
55
                $(srcdir)/slide.png > slide.h
 
56