transmission/libtransmission/Makefile.am

174 lines
3.4 KiB
Makefile
Raw Normal View History

AM_CPPFLAGS = -I. -I$(top_srcdir) -I$(top_srcdir)/third-party/ -D__TRANSMISSION__ -DPACKAGE_DATA_DIR=\""$(datadir)"\"
AM_CFLAGS = \
$(DHT_CFLAGS) \
$(LIBEVENT_CFLAGS) \
$(LIBCURL_CFLAGS) \
$(OPENSSL_CFLAGS) \
$(PTHREAD_CFLAGS) \
$(ZLIB_CFLAGS)
noinst_LIBRARIES = libtransmission.a
libtransmission_a_SOURCES = \
announcer.c \
bandwidth.c \
bencode.c \
bitfield.c \
blocklist.c \
clients.c \
completion.c \
ConvertUTF.c \
crypto.c \
fdlimit.c \
ggets.c \
handshake.c \
inout.c \
2008-05-11 22:42:53 +00:00
json.c \
JSON_parser.c \
list.c \
magnet.c \
makemeta.c \
metainfo.c \
natpmp.c \
net.c \
peer-io.c \
peer-mgr.c \
peer-msgs.c \
platform.c \
port-forwarding.c \
ptrarray.c \
publish.c \
ratecontrol.c \
resume.c \
rpcimpl.c \
2008-05-18 16:44:30 +00:00
rpc-server.c \
session.c \
stats.c \
torrent.c \
torrent-ctor.c \
2009-11-24 02:16:31 +00:00
torrent-magnet.c \
tr-dht.c \
tr-getopt.c \
trevent.c \
upnp.c \
utils.c \
verify.c \
web.c \
webseed.c \
wildmat.c
noinst_HEADERS = \
announcer.h \
bandwidth.h \
bencode.h \
bitfield.h \
bitset.h \
blocklist.h \
clients.h \
ConvertUTF.h \
crypto.h \
completion.h \
fdlimit.h \
ggets.h \
handshake.h \
inout.h \
json.h \
JSON_parser.h \
list.h \
magnet.h \
makemeta.h \
metainfo.h \
natpmp.h \
net.h \
peer-common.h \
peer-io.h \
peer-mgr.h \
peer-msgs.h \
platform.h \
port-forwarding.h \
ptrarray.h \
publish.h \
ratecontrol.h \
resume.h \
rpcimpl.h \
2008-05-18 16:44:30 +00:00
rpc-server.h \
session.h \
stats.h \
torrent.h \
2009-11-24 02:16:31 +00:00
torrent-magnet.h \
tr-getopt.h \
transmission.h \
tr-dht.h \
trevent.h \
upnp.h \
utils.h \
verify.h \
version.h \
web.h \
webseed.h
2007-10-24 17:20:50 +00:00
2008-03-05 00:50:53 +00:00
TESTS = \
blocklist-test \
bencode-test \
clients-test \
2008-05-11 22:42:53 +00:00
json-test \
magnet-test \
peer-msgs-test \
rpc-test \
test-peer-id \
utils-test
2008-03-05 00:50:53 +00:00
noinst_PROGRAMS = $(TESTS)
2008-11-12 04:25:38 +00:00
apps_ldflags = \
$(ZLIB_LDFLAGS)
2008-11-12 04:25:38 +00:00
apps_ldadd = \
./libtransmission.a \
$(top_builddir)/third-party/miniupnp/libminiupnp.a \
$(top_builddir)/third-party/libnatpmp/libnatpmp.a \
$(INTLLIBS) \
$(DHT_LIBS) \
$(LIBEVENT_LIBS) \
$(LIBCURL_LIBS) \
2008-08-01 16:43:22 +00:00
$(OPENSSL_LIBS) \
$(PTHREAD_LIBS) \
2009-07-09 17:57:31 +00:00
$(ZLIB_LIBS)
bencode_test_SOURCES = bencode-test.c
2008-11-12 04:25:38 +00:00
bencode_test_LDADD = ${apps_ldadd}
bencode_test_LDFLAGS = ${apps_ldflags}
blocklist_test_SOURCES = blocklist-test.c
2008-11-12 04:25:38 +00:00
blocklist_test_LDADD = ${apps_ldadd}
blocklist_test_LDFLAGS = ${apps_ldflags}
clients_test_SOURCES = clients-test.c
2008-11-12 04:25:38 +00:00
clients_test_LDADD = ${apps_ldadd}
clients_test_LDFLAGS = ${apps_ldflags}
2008-05-11 22:42:53 +00:00
json_test_SOURCES = json-test.c
2008-11-12 04:25:38 +00:00
json_test_LDADD = ${apps_ldadd}
json_test_LDFLAGS = ${apps_ldflags}
magnet_test_SOURCES = magnet-test.c
magnet_test_LDADD = ${apps_ldadd}
magnet_test_LDFLAGS = ${apps_ldflags}
rpc_test_SOURCES = rpc-test.c
2008-11-12 04:25:38 +00:00
rpc_test_LDADD = ${apps_ldadd}
rpc_test_LDFLAGS = ${apps_ldflags}
2008-01-07 17:52:50 +00:00
test_peer_id_SOURCES = test-peer-id.c
2008-11-12 04:25:38 +00:00
test_peer_id_LDADD = ${apps_ldadd}
test_peer_id_LDFLAGS = ${apps_ldflags}
peer_msgs_test_SOURCES = peer-msgs-test.c
peer_msgs_test_LDADD = ${apps_ldadd}
peer_msgs_test_LDFLAGS = ${apps_ldflags}
utils_test_SOURCES = utils-test.c
2008-11-12 04:25:38 +00:00
utils_test_LDADD = ${apps_ldadd}
utils_test_LDFLAGS = ${apps_ldflags}