mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-17 05:22:31 -04:00
Addition of libbitdht.
============================================================ This is intended to be a completely independent library from RS, (hosted at sf.net/projects/bitdht) hence is being commited at the top level. As initial further development / testing will be driven by RS integration it is being added to the RS repository. Equally important is ensuring that RS can compile without requiring aux libraries. Once libbitdht is further developed, this section of the repository is expected to be removed... But that will not be for a while, I expect. drbob. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3276 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9b72977bba
commit
c415bb6158
56 changed files with 11344 additions and 0 deletions
44
libbitdht/src/bitdht/Makefile
Normal file
44
libbitdht/src/bitdht/Makefile
Normal file
|
@ -0,0 +1,44 @@
|
|||
CPPFLAGS += -g -Wall -D BE_DEBUG -lpthread
|
||||
LDFLAGS += -g -Wall -D BE_DEBUG -lpthread
|
||||
CFLAGS += -g -Wall -D BE_DEBUG
|
||||
CC = g++
|
||||
LIB = -lpthread
|
||||
CPPLIB = -lpthread
|
||||
|
||||
EXEC = bdmsgs_test bdmetric_test bdquery_test bdspace_test bdspace_test2 bdnode_test bdnode_test2 bdstore_test
|
||||
EXEC += bdnode_multitest1 bdmidids_test
|
||||
EXEC += udpbitdht_nettest bencode_test
|
||||
EXEC += bdmgr_multitest
|
||||
#EXEC += bdudp_test
|
||||
|
||||
all: $(EXEC)
|
||||
|
||||
OBJ = bencode.o bdmsgs.o bdobj.o
|
||||
OBJ += bdpeer.o bdquery.o bdnode.o bdstore.o bdhash.o
|
||||
OBJ += bdmanager.o bdstddht.o
|
||||
|
||||
# udp base objs
|
||||
OBJ += bdthreads.o udplayer.o udpstack.o
|
||||
OBJ += udpbitdht.o
|
||||
|
||||
bdmsgs_test: $(OBJ) bdmsgs_test.o
|
||||
bdmetric_test: $(OBJ) bdmetric_test.o
|
||||
bdquery_test: $(OBJ) bdquery_test.o
|
||||
bdspace_test: $(OBJ) bdspace_test.o
|
||||
bdspace_test2: $(OBJ) bdspace_test2.o
|
||||
bdnode_test: $(OBJ) bdnode_test.o
|
||||
bdnode_test2: $(OBJ) bdnode_test2.o
|
||||
bdmidids_test: $(OBJ) bdmidids_test.o
|
||||
|
||||
bdnode_multitest1: $(OBJ) bdnode_multitest1.o
|
||||
bdmgr_multitest: $(OBJ) bdmgr_multitest.o
|
||||
|
||||
bdstore_test: $(OBJ) bdstore_test.o
|
||||
bdudp_test: $(OBJ) bdudp_test.o
|
||||
udpbitdht_nettest: $(OBJ) udpbitdht_nettest.o
|
||||
bencode_test: $(OBJ) bencode_test.o
|
||||
|
||||
clean:
|
||||
rm -f *.o core $(EXEC)
|
||||
|
||||
.PHONY: all clean
|
Loading…
Add table
Add a link
Reference in a new issue