2007-12-11 20:43:17 -05:00
|
|
|
|
|
|
|
RS_TOP_DIR = ..
|
|
|
|
##### Define any flags that are needed for this section #######
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
include $(RS_TOP_DIR)/scripts/config.mk
|
|
|
|
###############################################################
|
|
|
|
|
2008-02-03 01:29:02 -05:00
|
|
|
RSOBJ = p3service.o p3chatservice.o p3msgservice.o \
|
2008-03-04 16:31:11 -05:00
|
|
|
p3gamelauncher.o p3ranking.o p3disc.o \
|
2008-04-09 08:54:15 -04:00
|
|
|
p3photoservice.o \
|
2008-06-13 11:32:12 -04:00
|
|
|
p3distrib.o \
|
2008-05-11 16:05:17 -04:00
|
|
|
p3status.o \
|
2008-06-13 11:32:12 -04:00
|
|
|
p3Qblog.o \
|
2008-06-24 00:22:42 -04:00
|
|
|
p3forums.o \
|
2008-06-24 19:12:25 -04:00
|
|
|
p3channels.o \
|
2009-04-21 15:12:43 -04:00
|
|
|
p3portservice.o \
|
2009-05-07 17:36:17 -04:00
|
|
|
p3turtle.o
|
2008-04-09 08:54:15 -04:00
|
|
|
|
2008-06-13 11:32:12 -04:00
|
|
|
# dummy forums interface.
|
|
|
|
# p3forums-dummy.o \
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-06-13 11:32:12 -04:00
|
|
|
TESTOBJ = forum_test.o
|
2007-12-11 20:43:17 -05:00
|
|
|
|
2008-06-13 11:32:12 -04:00
|
|
|
TESTS = forum_test
|
2007-12-11 20:43:17 -05:00
|
|
|
|
|
|
|
all: librs tests
|
|
|
|
|
2008-06-13 11:32:12 -04:00
|
|
|
forum_test : forum_test.o
|
|
|
|
$(CC) $(CFLAGS) -o forum_test forum_test.o $(OBJ) $(LIBS)
|
2007-12-11 20:43:17 -05:00
|
|
|
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
include $(RS_TOP_DIR)/scripts/rules.mk
|
|
|
|
###############################################################
|
|
|
|
|