~ubuntu-branches/ubuntu/vivid/ekiga/vivid-proposed

« back to all changes in this revision

Viewing changes to lib/platform/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 = libgmplatform.la
2
 
 
3
 
INCLUDES = -I$(top_srcdir)/lib \
4
 
           $(EKIGA_LIB_CFLAGS)
5
 
 
6
 
libgmplatform_la_SOURCES = gm-platform.h
7
 
 
8
 
if WIN32
9
 
libgmplatform_la_SOURCES += platform-win32.c winpaths.h
10
 
else
11
 
libgmplatform_la_SOURCES += platform-generic.c
12
 
endif
13
 
 
14
 
AM_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS)
15
 
AM_LIBS = $(GTK_LIBS) $(GLIB_LIBS)
16
 
 
17
 
libgmplatform_la_LDFLAGS = -export-dynamic -no-undefined $(AM_LIBS)