Adding files to setup autotools.

Minor spelling fix in manual.html.
This commit is contained in:
peerkoel
2005-08-17 00:24:41 +00:00
parent 6d8068e5d5
commit 77956fb5a6
13 changed files with 628 additions and 1 deletions

19
test/Makefile.am Normal file
View File

@@ -0,0 +1,19 @@
bin_PROGRAMS = test_hasher test_bencoding test_ip_filter test_piece_picker
EXTRA_DIST = Jamfile
test_hasher_SOURCES = main.cpp test_hasher.cpp
test_hasher_LDADD = $(top_builddir)/src/libtorrent.la
test_bencoding_SOURCES = main.cpp test_bencoding.cpp
test_bencoding_LDADD = $(top_builddir)/src/libtorrent.la
test_ip_filter_SOURCES = main.cpp test_ip_filter.cpp
test_ip_filter_LDADD = $(top_builddir)/src/libtorrent.la
test_piece_picker_SOURCES = main.cpp test_piece_picker.cpp
test_piece_picker_LDADD = $(top_builddir)/src/libtorrent.la
noinst_HEADERS = test.hpp
AM_CXXFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include @DEBUGFLAGS@ @PTHREAD_CFLAGS@
AM_LDFLAGS= -L./ -l@BOOST_DATE_TIME_LIB@ -l@BOOST_FILESYSTEM_LIB@ -l@BOOST_THREAD_LIB@ @PTHREAD_LIBS@