2006-02-17 13:35:04 +00:00
|
|
|
bin_PROGRAMS = aria2c
|
|
|
|
aria2c_SOURCES = main.cc
|
|
|
|
SRCS = Socket.cc Socket.h\
|
2006-02-17 14:47:45 +00:00
|
|
|
SocketCore.cc SocketCore.h\
|
2006-02-17 13:35:04 +00:00
|
|
|
Command.h\
|
|
|
|
AbstractCommand.cc AbstractCommand.h\
|
|
|
|
InitiateConnectionCommandFactory.cc InitiateConnectionCommandFactory.h\
|
|
|
|
DownloadCommand.cc DownloadCommand.h\
|
|
|
|
HttpInitiateConnectionCommand.cc HttpInitiateConnectionCommand.h\
|
|
|
|
HttpRequestCommand.cc HttpRequestCommand.h\
|
|
|
|
HttpResponseCommand.cc HttpResponseCommand.h\
|
|
|
|
HttpProxyRequestCommand.cc HttpProxyRequestCommand.h\
|
|
|
|
HttpProxyResponseCommand.cc HttpProxyResponseCommand.h\
|
|
|
|
HttpDownloadCommand.cc HttpDownloadCommand.h\
|
2006-02-21 12:27:17 +00:00
|
|
|
HttpHeader.cc HttpHeader.h\
|
2006-02-17 13:35:04 +00:00
|
|
|
HttpConnection.cc HttpConnection.h\
|
2006-02-21 12:27:17 +00:00
|
|
|
FtpConnection.cc FtpConnection.h\
|
|
|
|
FtpInitiateConnectionCommand.cc FtpInitiateConnectionCommand.h\
|
|
|
|
FtpNegotiationCommand.cc FtpNegotiationCommand.h\
|
|
|
|
FtpDownloadCommand.cc FtpDownloadCommand.h\
|
|
|
|
FtpTunnelRequestCommand.cc FtpTunnelRequestCommand.h\
|
|
|
|
FtpTunnelResponseCommand.cc FtpTunnelResponseCommand.h\
|
2006-02-17 13:35:04 +00:00
|
|
|
SleepCommand.cc SleepCommand.h\
|
|
|
|
DownloadEngine.cc DownloadEngine.h\
|
2006-03-02 02:54:49 +00:00
|
|
|
ConsoleDownloadEngine.cc ConsoleDownloadEngine.h\
|
2006-02-17 13:35:04 +00:00
|
|
|
Segment.h\
|
|
|
|
SegmentMan.cc SegmentMan.h\
|
2006-02-22 14:30:47 +00:00
|
|
|
SegmentSplitter.cc SegmentSplitter.h\
|
|
|
|
SplitFirstSegmentSplitter.cc SplitFirstSegmentSplitter.h\
|
|
|
|
SplitSlowestSegmentSplitter.cc SplitSlowestSegmentSplitter.h\
|
2006-02-17 13:35:04 +00:00
|
|
|
Util.cc Util.h\
|
|
|
|
Request.cc Request.h\
|
|
|
|
common.h\
|
|
|
|
message.h\
|
|
|
|
Exception.h\
|
|
|
|
DlAbortEx.h\
|
|
|
|
DlRetryEx.h\
|
|
|
|
Logger.h\
|
|
|
|
SimpleLogger.cc SimpleLogger.h\
|
|
|
|
TransferEncoding.h\
|
|
|
|
ChunkedEncoding.cc ChunkedEncoding.h\
|
|
|
|
DiskWriter.h\
|
|
|
|
DefaultDiskWriter.cc DefaultDiskWriter.h\
|
|
|
|
AbstractDiskWriter.cc AbstractDiskWriter.h\
|
|
|
|
File.cc File.h\
|
|
|
|
Option.cc Option.h\
|
|
|
|
Base64.cc Base64.h\
|
|
|
|
CookieBox.cc CookieBox.h
|
|
|
|
noinst_LIBRARIES = libaria2c.a
|
|
|
|
libaria2c_a_SOURCES = $(SRCS)
|
|
|
|
aria2c_LDADD = libaria2c.a
|
2006-03-05 06:32:01 +00:00
|
|
|
FLAGS = -I../lib -Wall -D_FILE_OFFSET_BITS=64 -DLOCALEDIR=\"$(localedir)\"
|
2006-02-17 13:35:04 +00:00
|
|
|
libaria2c_a_CXXFLAGS = $(FLAGS)
|
|
|
|
aria2c_CXXFLAGS = $(FLAGS)
|