80 lines
1.3 KiB
Makefile
80 lines
1.3 KiB
Makefile
AM_CPPFLAGS = -I. -I$(top_srcdir) -D__TRANSMISSION__ $(LIBEVENT_CPPFLAGS)
|
|
|
|
AM_CFLAGS = $(PTHREAD_CFLAGS)
|
|
|
|
noinst_LIBRARIES = libtransmission.a
|
|
|
|
EXTRA_DIST = version.h.in
|
|
|
|
libtransmission_a_SOURCES = \
|
|
basename.c \
|
|
bencode.c \
|
|
clients.c \
|
|
completion.c \
|
|
crypto.c \
|
|
dirname.c \
|
|
fastresume.c \
|
|
fdlimit.c \
|
|
handshake.c \
|
|
http.c \
|
|
inout.c \
|
|
ipcparse.c \
|
|
list.c \
|
|
makemeta.c \
|
|
metainfo.c \
|
|
natpmp.c \
|
|
net.c \
|
|
peer-io.c \
|
|
peer-mgr.c \
|
|
peer-msgs.c \
|
|
platform.c \
|
|
ptrarray.c \
|
|
publish.c \
|
|
ratecontrol.c \
|
|
shared.c \
|
|
strlcat.c \
|
|
strlcpy.c \
|
|
torrent.c \
|
|
tracker.c \
|
|
transmission.c \
|
|
trevent.c \
|
|
upnp.c \
|
|
utils.c \
|
|
xml.c
|
|
|
|
noinst_HEADERS = \
|
|
bencode.h \
|
|
bsdqueue.h \
|
|
bsdtree.h \
|
|
clients.h \
|
|
crypto.h \
|
|
completion.h \
|
|
fastresume.h \
|
|
fdlimit.h \
|
|
handshake.h \
|
|
http.h \
|
|
inout.h \
|
|
internal.h \
|
|
ipcparse.h \
|
|
list.h \
|
|
makemeta.h \
|
|
metainfo.h \
|
|
natpmp.h \
|
|
net.h \
|
|
peer-io.h \
|
|
peer-mgr.h \
|
|
peer-mgr-private.h \
|
|
peer-msgs.h \
|
|
platform.h \
|
|
ptrarray.h \
|
|
publish.h \
|
|
ratecontrol.h \
|
|
shared.h \
|
|
tracker.h \
|
|
transmission.h \
|
|
trcompat.h \
|
|
trevent.h \
|
|
upnp.h \
|
|
utils.h \
|
|
xml.h
|