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