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