mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
a8bd405040
xmlrpc command takes the download info-hash and the file index as the first two parameters. * Added several file commands. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@937 e378c898-3ddf-0310-93e7-cc216c733640
37 lines
677 B
Makefile
37 lines
677 B
Makefile
SUBDIRS = \
|
|
core \
|
|
display \
|
|
input \
|
|
rpc \
|
|
ui \
|
|
utils
|
|
|
|
bin_PROGRAMS = rtorrent
|
|
|
|
rtorrent_LDADD = \
|
|
$(top_srcdir)/src/ui/libsub_ui.a \
|
|
$(top_srcdir)/src/core/libsub_core.a \
|
|
$(top_srcdir)/src/display/libsub_display.a \
|
|
$(top_srcdir)/src/input/libsub_input.a \
|
|
$(top_srcdir)/src/rpc/libsub_rpc.a \
|
|
$(top_srcdir)/src/utils/libsub_utils.a
|
|
|
|
rtorrent_SOURCES = \
|
|
command_download.cc \
|
|
command_events.cc \
|
|
command_file.cc \
|
|
command_helpers.cc \
|
|
command_helpers.h \
|
|
command_local.cc \
|
|
command_network.cc \
|
|
command_ui.cc \
|
|
control.cc \
|
|
control.h \
|
|
globals.cc \
|
|
globals.h \
|
|
main.cc \
|
|
option_parser.cc \
|
|
option_parser.h \
|
|
signal_handler.cc \
|
|
signal_handler.h
|