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

« back to all changes in this revision

Viewing changes to socket/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
AM_CFLAGS = \
 
12
        $(ERROR_CFLAGS) \
 
13
        $(GLIB_CFLAGS) \
 
14
        -I $(top_srcdir)/random \
 
15
        -I $(top_srcdir)/agent \
 
16
        -I $(top_srcdir)/
 
17
 
 
18
COMMON_LDADD = libsocket.la $(top_builddir)/agent/libagent.la $(GLIB_LIBS) $(top_builddir)/stun/libstun.la
 
19
 
 
20
noinst_LTLIBRARIES = libsocket.la
 
21
 
 
22
libsocket_la_SOURCES = \
 
23
        socket.h \
 
24
        socket.c \
 
25
        udp-bsd.h \
 
26
        udp-bsd.c \
 
27
        tcp-bsd.h \
 
28
        tcp-bsd.c \
 
29
        pseudossl.h \
 
30
        pseudossl.c \
 
31
        socks5.h \
 
32
        socks5.c \
 
33
        turn.h \
 
34
        turn.c \
 
35
        tcp-turn.h \
 
36
        tcp-turn.c
 
37
 
 
38
check_PROGRAMS = test-bsd
 
39
 
 
40
test_bsd_LDADD = $(COMMON_LDADD)
 
41
 
 
42
 
 
43
TESTS = $(check_PROGRAMS)
 
44
 
 
45
pkginclude_HEADERS = socket.h udp-bsd.h tcp-bsd.h pseudossl.h turn.h tcp-turn.h socks5.h
 
46