~ubuntu-branches/ubuntu/saucy/ekiga/saucy

« back to all changes in this revision

Viewing changes to lib/toolbox/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kilian Krause
  • Date: 2011-07-17 00:24:50 UTC
  • mfrom: (5.1.5 upstream) (7.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110717002450-ytg3wsrc1ptd3153
Tags: 3.3.1-1
* New upstream release.
 - Required libpt-dev 2.10 and libopal-dev 3.10
* Fix debian/watch to catch new version
* Remove libnotify0.7.patch - included upstream
* Add libboost-dev and libboost-signals-dev to Build-Depends
* debian/rules: Don't install *.la files for new internal shared libs
* Fix Vcs URIs to point to correct desktop/experimental/ekiga tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
noinst_LTLIBRARIES = libtoolbox.la
2
 
 
3
 
libtoolbox_la_SOURCES = \
4
 
        toolbox.h               \
5
 
        toolbox-common.c        \
6
 
        toolbox-internal.h      \
7
 
        toolbox-internal.c
8
 
 
9
 
if WIN32
10
 
libtoolbox_la_SOURCES += toolbox-win32.c
11
 
else
12
 
if HAVE_GNOME
13
 
libtoolbox_la_SOURCES += toolbox-gnome.c
14
 
else
15
 
libtoolbox_la_SOURCES += toolbox-gtk.c
16
 
endif
17
 
endif
18
 
 
19
 
INCLUDES = $(EKIGA_LIB_CFLAGS)
20
 
 
21
 
AM_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) $(GNOME_CFLAGS)
22
 
AM_LIBS = $(GTK_LIBS) $(GLIB_LIBS) $(GNOME_LIBS)
23
 
 
24
 
libtoolbox_la_LDFLAGS = -export-dynamic $(AM_LIBS)