~ubuntu-branches/ubuntu/utopic/lksctp-tools/utopic-proposed

« back to all changes in this revision

Viewing changes to src/apps/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2009-04-30 11:53:58 UTC
  • mfrom: (1.1.8 upstream) (4.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090430115358-b7zr6yo562yrwhwu
Tags: 1.0.10+dfsg-1
* New upstream release.
* Repackaged upstream tarball to remove non-free documentation in doc/*.
* debian/copyright
  - Add a note why the upstream tarball has been repackaged and which files
    have been removed.
* debian/watch
  - Fix regex to match version numbers with more than one digit.
  - Use +dfsg suffix.
* debian/control
  - Bump Standards-Version to 3.8.1. No further changes.
* debian/libsctp1.symbols
  - The sctp_connectx() function was updated to conform to the spec.
    To preserve the ABI, symbol versioning has been added by upstream.
    Update the symbols file accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
INCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib 
9
9
AM_CFLAGS = -g -Wall -Wstrict-prototypes -Wimplicit-function-declaration
10
10
AM_LDFLAGS = 
11
 
LDADD = $(top_builddir)/src/lib/libsctp.la \
12
 
        $(top_builddir)/src/testlib/libsctputil.la
 
11
LDADD = $(top_builddir)/src/testlib/libsctputil.la \
 
12
        $(top_builddir)/src/lib/libsctp.la
13
13
 
14
14
# programs to be installed with the distriubution
15
 
bin_PROGRAMS = sctp_darn sctp_test
 
15
bin_PROGRAMS = sctp_darn sctp_test sctp_status
16
16
 
17
17
# Test programs and libraries to build
18
18
noinst_PROGRAMS = bindx_test nagle_snd nagle_rcv myftp sctp_xconnect \
19
 
        peel_server peel_client sctp_test
 
19
        peel_server peel_client sctp_test sctp_status
20
20
 
21
21
$(top_builddir)/src/lib/libsctp.la:
22
22
        make -C $(top_builddir)/src/lib libsctp.la
28
28
bindx_test_SOURCES = bindx_test.c
29
29
sctp_darn_SOURCES = sctp_darn.c sctp_darn.h
30
30
sctp_test_SOURCES = sctp_test.c
 
31
sctp_status_SOURCES = sctp_status.c
31
32
nagle_rcv_SOURCES = nagle_rcv.c 
32
33
nagle_snd_SOURCES = nagle_snd.c 
33
34
myftp_SOURCES = myftp.c
36
37
peel_client_SOURCES = peel_client.c
37
38
 
38
39
# Tutorials
39
 
pkgdoc_DATA = sctp_darn.c sctp_darn.h sctp_test.c
 
40
pkgdoc_DATA = sctp_darn.c sctp_darn.h sctp_test.c sctp_status.c