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

« back to all changes in this revision

Viewing changes to libxfsm/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2009-04-19 18:13:45 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (4.2.1 squeeze) (1.1.16 upstream)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20090419181345-o1rev68obla00xef
ImportĀ upstreamĀ versionĀ 4.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
        -I$(top_srcdir)
3
3
 
4
4
# common library
5
 
lib_LTLIBRARIES = libxfsm-4.2.la
 
5
lib_LTLIBRARIES = libxfsm-4.6.la
6
6
 
7
 
libxfsm_4_2_la_SOURCES =                                                \
 
7
libxfsm_4_6_la_SOURCES =                                                \
8
8
        xfsm-splash-rc.c                                                \
9
9
        xfsm-splash-rc.h                                                \
10
10
        xfsm-util.h                                                     \
11
11
        xfsm-util.c
12
12
 
13
 
libxfsm_4_2_la_CFLAGS =                                                 \
14
 
        @LIBX11_CFLAGS@                                                 \
15
 
        @LIBXFCEGUI4_CFLAGS@
 
13
libxfsm_4_6_la_CFLAGS =                                                 \
 
14
        $(LIBX11_CFLAGS)                                                \
 
15
        $(LIBXFCEGUI4_CFLAGS)                                           \
 
16
        $(XFCONF_CFLAGS)
16
17
 
17
 
libxfsm_4_2_la_LDFLAGS =                                                \
 
18
libxfsm_4_6_la_LDFLAGS =                                                \
18
19
        -export-dynamic                                                 \
19
 
        -version-info 0:1:0
 
20
        -version-info 0:0:0                                             \
 
21
        $(LIBX11_LDFLAGS)
20
22
 
21
23
if HAVE_OS_CYGWIN
22
 
libxfsm_4_2_la_LDFLAGS +=                                               \
23
 
        -no-undefined                                                   \
24
 
        @LIBX11_LDFLAGS@
25
 
 
26
 
libxfsm_4_2_la_LIBADD =                                                 \
27
 
        @LIBX11_LIBS@                                                   \
28
 
        @LIBXFCEGUI4_LIBS@
 
24
libxfsm_4_6_la_LDFLAGS +=                                               \
 
25
        -no-undefined
29
26
endif
30
27
 
 
28
libxfsm_4_6_la_LIBADD =                                                 \
 
29
        $(LIBX11_LIBS)                                                  \
 
30
        $(LIBXFCEGUI4_LIBS)                                             \
 
31
        $(XFCONF_LIBS)
 
32
 
31
33
 
32
34
libxfsmincludedir =                                                     \
33
 
        $(includedir)/xfce4/xfce4-session-4.2/libxfsm
 
35
        $(includedir)/xfce4/xfce4-session-4.6/libxfsm
34
36
 
35
37
libxfsminclude_HEADERS =                                                \
36
38
        xfsm-splash-engine.h                                            \
38
40
 
39
41
 
40
42
pkgconfigdir = $(libdir)/pkgconfig
41
 
pkgconfig_DATA = xfce4-session-1.0.pc
 
43
pkgconfig_DATA = xfce4-session-2.0.pc
42
44
 
43
45