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