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-07-23 22:01:59 +00:00
|
|
|
RSOBJ = ftfileprovider.o ftfilecreator.o ftextralist.o ftdatamultiplex.o
|
|
|
|
#ftservermodule.o
|
2008-06-19 22:49:23 +00:00
|
|
|
|
2008-07-23 22:01:59 +00:00
|
|
|
TESTOBJ = ftfileprovidertest.o ftfilecreatortest.o ftextralisttest.o
|
2008-06-19 22:49:23 +00:00
|
|
|
|
2008-07-23 22:01:59 +00:00
|
|
|
TESTS = ftfileprovidertest ftfilecreatortest ftextralisttest
|
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
|
|
|
|
|
|
|
###############################################################
|
|
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
|
|
###############################################################
|
|
|
|
|
2008-07-02 02:36:39 +00:00
|
|
|
|