mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
7600a51039
small. Patch by Josef Drexler. * Added 'view.persistance' command that makes downloads inserted into that view persist across sessions. Only call on user-created views. * Added 'ratio.*' commands that call the 'group.seeding.ratio.*' equivalents. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1080 e378c898-3ddf-0310-93e7-cc216c733640
42 lines
785 B
Makefile
42 lines
785 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_dynamic.cc \
|
|
command_events.cc \
|
|
command_file.cc \
|
|
command_helpers.cc \
|
|
command_helpers.h \
|
|
command_local.cc \
|
|
command_network.cc \
|
|
command_object.cc \
|
|
command_peer.cc \
|
|
command_tracker.cc \
|
|
command_scheduler.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
|