~ubuntu-branches/debian/squeeze/libnice/squeeze

« back to all changes in this revision

Viewing changes to nice/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-01-04 17:45:34 UTC
  • Revision ID: james.westby@ubuntu.com-20090104174534-dh5u1pfonumqa99c
Tags: upstream-0.0.4
ImportĀ upstreamĀ versionĀ 0.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile.am for the Nice Glib ICE library
 
3
#
 
4
# (C) 2006, 2007 Collabora Ltd.
 
5
# (C) 2006, 2007 Nokia Corporation. All rights reserved.
 
6
#
 
7
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
 
8
 
 
9
include $(top_srcdir)/common.mk
 
10
 
 
11
lib_LTLIBRARIES = libnice.la
 
12
 
 
13
libnice_la_SOURCES =
 
14
libnice_la_DEPENDENCIES = \
 
15
        ../agent/libagent.la \
 
16
        libnice.sym
 
17
 
 
18
libnice_la_LIBADD = \
 
19
        $(GLIB_LIBS) \
 
20
        ../agent/libagent.la
 
21
 
 
22
libnice_la_LDFLAGS = \
 
23
        -export-symbols $(srcdir)/libnice.sym \
 
24
        $(NICE_LT_LDFLAGS)
 
25
 
 
26
 
 
27
AM_CFLAGS = \
 
28
        $(ERROR_CFLAGS) \
 
29
        $(GLIB_CFLAGS) \
 
30
        -I $(top_srcdir) \
 
31
        -I $(top_srcdir)/agent \
 
32
        -I $(top_srcdir)/random \
 
33
        -I $(top_srcdir)/socket \
 
34
        -I $(top_srcdir)/stun
 
35
 
 
36
test-symbols.sh::
 
37
        chmod +x $(srcdir)/$@
 
38
 
 
39
libnice.symbols: libnice.sym Makefile
 
40
        rm -f $@
 
41
        while read s; do echo "T $$s"; done < $< > $@
 
42
 
 
43
CLEANFILES += libnice.symbols
 
44
 
 
45
check_SCRIPTS = test-symbols.sh
 
46
check_DATA = libnice.symbols
 
47
 
 
48
TESTS = $(check_SCRIPTS)
 
49
 
 
50
EXTRA_DIST = $(check_SCRIPTS) libnice.sym libnice.ver
 
51
 
 
52
pkginclude_HEADERS = nice.h
 
53
 
 
54
pkgconfigdir = $(libdir)/pkgconfig
 
55
pkgconfig_DATA = nice.pc
 
56