mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-14 18:34:29 -05:00
33032e8a83
* Created pqiNetAssist interfaces for DHT and UPnP. * Created PQIHub etc for standalone testing (in ft/pqitestor.h for now). * Add basics of first server test ... its not quite complete yet. * Improvements to ftserver. * Changes to many tests to match other mods. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@689 b45a01b8-16f6-495d-af2f-9b41ad6348cc
42 lines
1.3 KiB
Makefile
42 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 = ftdata.o ftfileprovider.o ftfilecreator.o ftextralist.o \
|
|
ftdatamultiplex.o ftfilesearch.o fttransfermodule.o ftdbase.o ftserver.o \
|
|
ftcontroller.o pqitestor.o
|
|
|
|
|
|
TESTOBJ = ftfileprovidertest.o ftfilecreatortest.o ftextralisttest.o ftdataplextest.o ftserver1test.o
|
|
|
|
|
|
TESTS = ftfileprovidertest ftfilecreatortest ftextralisttest ftdataplextest ftserver1test
|
|
|
|
all: librs tests
|
|
|
|
ftfilecreatortest : ftfilecreatortest.o
|
|
$(CC) $(CFLAGS) -o ftfilecreatortest ftfilecreatortest.o $(LIBS)
|
|
|
|
ftfileprovidertest : ftfileprovidertest.o
|
|
$(CC) $(CFLAGS) -o ftfileprovidertest ftfileprovidertest.o $(LIBS)
|
|
|
|
ftextralisttest : ftextralisttest.o
|
|
$(CC) $(CFLAGS) -o ftextralisttest ftextralisttest.o $(LIBS)
|
|
|
|
ftdataplextest : ftdataplextest.o
|
|
$(CC) $(CFLAGS) -o ftdataplextest ftdataplextest.o $(LIBS)
|
|
|
|
ftserver1test : ftserver1test.o
|
|
$(CC) $(CFLAGS) -o ftserver1test ftserver1test.o $(LIBS)
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
###############################################################
|
|
|
|
|