2008-06-19 18:49:23 -04:00
|
|
|
|
|
|
|
RS_TOP_DIR = ..
|
|
|
|
##### Define any flags that are needed for this section #######
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
include $(RS_TOP_DIR)/scripts/config.mk
|
|
|
|
###############################################################
|
|
|
|
|
2008-08-16 11:02:24 -04:00
|
|
|
RSOBJ = ftdata.o ftfileprovider.o ftfilecreator.o ftextralist.o \
|
|
|
|
ftdatamultiplex.o ftfilesearch.o fttransfermodule.o ftdbase.o ftserver.o \
|
|
|
|
ftcontroller.o pqitestor.o
|
2008-06-19 18:49:23 -04:00
|
|
|
|
|
|
|
|
2008-08-16 11:02:24 -04:00
|
|
|
TESTOBJ = ftfileprovidertest.o ftfilecreatortest.o ftextralisttest.o ftdataplextest.o ftserver1test.o
|
2008-08-03 08:45:53 -04:00
|
|
|
|
2008-08-09 13:03:24 -04:00
|
|
|
|
2008-08-16 11:02:24 -04:00
|
|
|
TESTS = ftfileprovidertest ftfilecreatortest ftextralisttest ftdataplextest ftserver1test
|
2008-06-19 18:49:23 -04:00
|
|
|
|
|
|
|
all: librs tests
|
|
|
|
|
2008-07-23 18:01:59 -04:00
|
|
|
ftfilecreatortest : ftfilecreatortest.o
|
|
|
|
$(CC) $(CFLAGS) -o ftfilecreatortest ftfilecreatortest.o $(LIBS)
|
2008-07-01 22:36:39 -04:00
|
|
|
|
2008-07-23 18:01:59 -04:00
|
|
|
ftfileprovidertest : ftfileprovidertest.o
|
|
|
|
$(CC) $(CFLAGS) -o ftfileprovidertest ftfileprovidertest.o $(LIBS)
|
|
|
|
|
|
|
|
ftextralisttest : ftextralisttest.o
|
|
|
|
$(CC) $(CFLAGS) -o ftextralisttest ftextralisttest.o $(LIBS)
|
2008-06-19 18:49:23 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
ftdataplextest : ftdataplextest.o
|
|
|
|
$(CC) $(CFLAGS) -o ftdataplextest ftdataplextest.o $(LIBS)
|
|
|
|
|
2008-08-09 13:03:24 -04:00
|
|
|
ftserver1test : ftserver1test.o
|
|
|
|
$(CC) $(CFLAGS) -o ftserver1test ftserver1test.o $(LIBS)
|
|
|
|
|
2008-06-19 18:49:23 -04:00
|
|
|
###############################################################
|
|
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
|
|
###############################################################
|
|
|
|
|
2008-07-01 22:36:39 -04:00
|
|
|
|