mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 10:54:22 -05:00
2bf94b909a
* Stun code now runs continually - to check external network state. * Udpsorter controls DHT stun is on/off. (via p3ConnectMgr) * added code to enable threads to join/restart * enabled NetRestart for UDP and TCP. * tweaked networking code for faster startup (now ~30 seconds - can still be improved). * tweaked debug messages for testing networking * Added test for checking external IP address determination. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1492 b45a01b8-16f6-495d-af2f-9b41ad6348cc
75 lines
1.8 KiB
Makefile
75 lines
1.8 KiB
Makefile
|
|
RS_TOP_DIR = ..
|
|
##### Define any flags that are needed for this section #######
|
|
###############################################################
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/config.mk
|
|
###############################################################
|
|
|
|
BASE_OBJ = pqisecurity.o pqinetwork.o
|
|
#pqi_base.o
|
|
|
|
LOOP_OBJ = pqiloopback.o
|
|
STREAM_OBJ = pqistreamer.o pqiarchive.o pqistore.o pqibin.o
|
|
MGR_OBJ = pqimonitor.o p3dhtmgr.o p3connmgr.o p3cfgmgr.o p3authmgr.o
|
|
GRP_OBJ = pqiperson.o pqihandler.o pqiservice.o pqipersongrp.o
|
|
SSL_OBJ = pqissl.o pqissllistener.o pqisslpersongrp.o cleanupxpgp.o
|
|
UDP_OBJ = pqissludp.o
|
|
|
|
OTHER_OBJ = p3notify.o
|
|
|
|
|
|
TESTOBJ = net_test.o dht_test.o net_test1.o
|
|
#conn_test.o
|
|
|
|
TESTS = net_test dht_test net_test1
|
|
#conn_test
|
|
|
|
ifdef PQI_USE_XPGP
|
|
SSL_OBJ += authxpgp.o
|
|
TESTOBJ += xpgp_id.o
|
|
TESTS += xpgp_id
|
|
else
|
|
ifdef PQI_USE_SSLONLY
|
|
SSL_OBJ += authssl.o
|
|
else
|
|
SSL_OBJ += authssl.o authgpg.o
|
|
TESTOBJ += gpgme_tst.o
|
|
TESTS += gpgme_tst
|
|
endif
|
|
endif
|
|
|
|
RSOBJ = $(BASE_OBJ) $(LOOP_OBJ) \
|
|
$(STREAM_OBJ) \
|
|
$(MGR_OBJ) \
|
|
$(SSL_OBJ) \
|
|
$(UDP_OBJ) \
|
|
$(GRP_OBJ) \
|
|
$(OTHER_OBJ)
|
|
|
|
all: librs tests
|
|
|
|
gpgme_tst: gpgme_tst.o
|
|
$(CC) $(CFLAGS) -o gpgme_tst gpgme_tst.o $(LIBS)
|
|
|
|
xpgp_id: xpgp_id.o
|
|
$(CC) $(CFLAGS) -o xpgp_id xpgp_id.o $(LIBS)
|
|
|
|
dht_test: dht_test.o
|
|
$(CC) $(CFLAGS) -o dht_test dht_test.o $(LIBS)
|
|
|
|
conn_test: conn_test.o
|
|
$(CC) $(CFLAGS) -o conn_test conn_test.o $(LIBS)
|
|
|
|
net_test: net_test.o
|
|
$(CC) $(CFLAGS) -o net_test net_test.o $(LIBS)
|
|
|
|
net_test1: net_test1.o
|
|
$(CC) $(CFLAGS) -o net_test1 net_test1.o $(LIBS)
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
###############################################################
|
|
|