]> code.delx.au - pulseaudio/blob - src/Makefile.am
make the whole stuff run and clean it self up again
[pulseaudio] / src / Makefile.am
1 # $Id: Makefile.am 27 2003-10-22 22:34:06Z lennart $
2 #
3 # This file is part of polypaudio.
4 #
5 # polypaudio is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # polypaudio is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with polypaudio; if not, write to the Free Software Foundation,
17 # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18
19 AM_CFLAGS=-ansi -D_GNU_SOURCE
20
21 bin_PROGRAMS = polypaudio
22
23 pkglib_LTLIBRARIES=libprotocol-simple.la protocol-simple-tcp.la \
24 libsocket-server.la sink-pipe.la libpstream.la libiochannel.la libpacket.la
25
26 polypaudio_SOURCES = idxset.c queue.c strbuf.c mainloop.c \
27 memblock.c sample.c memblockq.c client.c \
28 core.c main.c outputstream.c inputstream.c source.c sink.c \
29 module.c
30 polypaudio_INCLUDES = $(INCLTDL)
31 polypaudio_LDADD = $(LIBLTDL)
32 polypaudio_LDFLAGS=-export-dynamic
33
34 libprotocol_simple_la_SOURCES = protocol-simple.c
35 libprotocol_simple_la_LDFLAGS = -avoid-version
36 libprotocol_simple_la_LIBADD = libsocket-server.la libiochannel.la
37
38 libsocket_server_la_SOURCES = socket-server.c
39 libsocket_server_la_LDFLAGS = -avoid-version
40 libsocket_server_la_LIBADD = libiochannel.la
41
42 libpstream_la_SOURCES = pstream.c
43 libpstream_la_LDFLAGS = -avoid-version
44 libpstream_la_LIBADD = libpacket.la
45
46 libiochannel_la_SOURCES = iochannel.c
47 libiochannel_la_LDFLAGS = -avoid-version
48
49 libpacket_la_SOURCES = packet.c
50 libpacket_la_LDFLAGS = -avoid-version
51
52 protocol_simple_tcp_la_SOURCES = protocol-simple-tcp.c
53 protocol_simple_tcp_la_LDFLAGS = -module -avoid-version
54 protocol_simple_tcp_la_LIBADD = libprotocol-simple.la libiochannel.la
55
56 sink_pipe_la_SOURCES = sink-pipe.c
57 sink_pipe_la_LDFLAGS = -module -avoid-version
58 sink_pipe_la_LIBADD = libiochannel.la