mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0c0147abe6
An invalid comparison was being made - meaning the EXT_PORT_FLAG was not set. This can lead to failed connection attempts. Added dht_check_peers program. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@409 b45a01b8-16f6-495d-af2f-9b41ad6348cc
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
|
|
RS_TOP_DIR = ..
|
|
##### Define any flags that are needed for this section #######
|
|
###############################################################
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/config.mk
|
|
###############################################################
|
|
|
|
RSOBJ = b64.o opendhtstr.o opendht.o opendhtmgr.o
|
|
|
|
TESTOBJ = odhtstr_test.o odhtpost_test.o odhtmgr_test.o \
|
|
dht_bootstrap.o dht_check_peers.o
|
|
|
|
TESTS = odhtstr_test odhtpost_test odhtmgr_test \
|
|
dht_bootstrap dht_check_peers
|
|
|
|
all: librs tests
|
|
|
|
#dhttest is OLD
|
|
dhttest: $(OBJ) dhttest.o
|
|
$(CC) $(CFLAGS) -o dhttest $(OBJ) dhttest.o $(LIBS)
|
|
|
|
dht_check_peers: $(OBJ) dht_check_peers.o
|
|
$(CC) $(CFLAGS) -o dht_check_peers $(OBJ) dht_check_peers.o $(LIBS)
|
|
|
|
odhtpost_test: $(OBJ) odhtpost_test.o
|
|
$(CC) $(CFLAGS) -o odhtpost_test $(OBJ) odhtpost_test.o $(LIBS)
|
|
|
|
odhtstr_test: $(OBJ) odhtstr_test.o
|
|
$(CC) $(CFLAGS) -o odhtstr_test $(OBJ) odhtstr_test.o $(LIBS)
|
|
|
|
odhtmgr_test: $(OBJ) odhtmgr_test.o
|
|
$(CC) $(CFLAGS) -o odhtmgr_test $(OBJ) odhtmgr_test.o $(LIBS)
|
|
|
|
dht_bootstrap: dht_bootstrap.o
|
|
$(CC) $(CFLAGS) -o dht_bootstrap dht_bootstrap.o $(LIBS)
|
|
|
|
# Extra Rule...
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c $<
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
###############################################################
|
|
|