mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0f99826623
* Modified tlvitems to support future expansions. * added random tlv test functios. * added dummy Wide Directory functions to rsdir (for the future;) * Fixed Mutex Bug in fimonitor. * added netiface_test for hiberation / net change testing. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1620 b45a01b8-16f6-495d-af2f-9b41ad6348cc
76 lines
2.5 KiB
Makefile
76 lines
2.5 KiB
Makefile
|
|
RS_TOP_DIR = ..
|
|
##### Define any flags that are needed for this section #######
|
|
###############################################################
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/config.mk
|
|
###############################################################
|
|
|
|
RSOBJ = rsserial.o rsbaseserial.o rstlvbase.o rstlvtypes.o
|
|
RSOBJ += rstlvfileitem.o # TLV Objs
|
|
RSOBJ += rstlvkeys.o # TLV Objs
|
|
RSOBJ += rstlvimage.o # TLV Objs
|
|
RSOBJ += rstlvutil.o # TLV Objs
|
|
RSOBJ += rstlvkvwide.o # TLV Objs
|
|
RSOBJ += rsbaseitems.o rsconfigitems.o rsdiscitems.o # RsItems
|
|
RSOBJ += rsmsgitems.o rsrankitems.o # RsItems
|
|
RSOBJ += rsphotoitems.o # RsItems
|
|
RSOBJ += rsgameitems.o # RsItems
|
|
RSOBJ += rsdistribitems.o # RsItems
|
|
RSOBJ += rsforumitems.o # RsItems
|
|
RSOBJ += rschannelitems.o # RsItems
|
|
RSOBJ += rsqblogitems.o # RsItems
|
|
RSOBJ += rsstatusitems.o # RsItems
|
|
|
|
TESTOBJ = tlvbase_test.o tlvbase_test2.o tlvfileitem_test.o
|
|
TESTOBJ += tlvitems_test.o tlvstack_test.o tlvconfig_test.o
|
|
TESTOBJ += rsserial_test.o rstlvwidetest.o tlvrandom_test.o
|
|
|
|
#rsbaseitem_test.o
|
|
|
|
TESTS = tlvbase_test tlvbase_test2 tlvfileitem_test
|
|
TESTS += tlvitems_test tlvstack_test tlvconfig_test
|
|
TESTS += rstlvwidetest tlvrandom_test
|
|
#rsserial_test
|
|
|
|
#rsbaseitem_test
|
|
|
|
all: librs tests
|
|
|
|
tlvbase_test : tlvbase_test.o
|
|
$(CC) $(CFLAGS) -o tlvbase_test tlvbase_test.o $(OBJ) $(LIBS)
|
|
|
|
tlvbase_test2 : tlvbase_test2.o
|
|
$(CC) $(CFLAGS) -o tlvbase_test2 tlvbase_test2.o $(OBJ) $(LIBS)
|
|
|
|
tlvfileitem_test : tlvfileitem_test.o
|
|
$(CC) $(CFLAGS) -o tlvfileitem_test tlvfileitem_test.o $(OBJ) $(LIBS)
|
|
|
|
tlvitems_test : tlvitems_test.o
|
|
$(CC) $(CFLAGS) -o tlvitems_test tlvitems_test.o $(OBJ) $(LIBS)
|
|
|
|
tlvstack_test : tlvstack_test.o
|
|
$(CC) $(CFLAGS) -o tlvstack_test tlvstack_test.o $(OBJ) $(LIBS)
|
|
|
|
tlvconfig_test : tlvconfig_test.o
|
|
$(CC) $(CFLAGS) -o tlvconfig_test tlvconfig_test.o $(OBJ) $(LIBS)
|
|
|
|
rsserial_test : rsserial_test.o
|
|
$(CC) $(CFLAGS) -o rsserial_test rsserial_test.o $(OBJ) $(LIBS)
|
|
|
|
rsbaseitem_test : rsbaseitem_test.o
|
|
$(CC) $(CFLAGS) -o rsbaseitem_test rsbaseitem_test.o $(OBJ) $(LIBS)
|
|
|
|
rstlvwidetest : rstlvwidetest.o
|
|
$(CC) $(CFLAGS) -o rstlvwidetest rstlvwidetest.o $(OBJ) $(LIBS)
|
|
|
|
tlvrandom_test : tlvrandom_test.o
|
|
$(CC) $(CFLAGS) -o tlvrandom_test tlvrandom_test.o $(OBJ) $(LIBS)
|
|
|
|
|
|
###############################################################
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
###############################################################
|
|
|