summaryrefslogtreecommitdiff
path: root/anyrtpproxy/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'anyrtpproxy/Makefile')
-rw-r--r--anyrtpproxy/Makefile21
1 files changed, 20 insertions, 1 deletions
diff --git a/anyrtpproxy/Makefile b/anyrtpproxy/Makefile
index 354099b..6f13a90 100644
--- a/anyrtpproxy/Makefile
+++ b/anyrtpproxy/Makefile
@@ -7,7 +7,7 @@ CCFLAGS = -g -Wall
CCFLAGS += -DSOCKETS_NAMESPACE=sockets
CCFLAGS += -DSOCKETS_NAMESPACE_STR='"sockets"'
LD = g++
-LDFLAGS = -g -Wall -O2 -lpthread
+LDFLAGS = -g -Wall -O2 -lpthread -lssl -lboost_serialization
OBJS = anyrtpproxy.o \
../signalController.o \
@@ -16,6 +16,22 @@ OBJS = anyrtpproxy.o \
../buffer.o \
../rtpSessionTable.o \
../rtpSession.o \
+ connectionList.o \
+ ../syncSocketHandler.o \
+ ../syncClientSocket.o \
+ ../syncQueue.o \
+ ../syncSocket.o \
+ ../seqWindow.o \
+ ../connectionParam.o \
+ ../routingTable.o \
+ ../syncBuffer.o \
+ ../syncCommand.o \
+ ../syncRouteCommand.o \
+ ../syncRtpCommand.o \
+ ../syncConnectionCommand.o \
+ ../networkAddress.o \
+ ../networkPrefix.o \
+ ../Sockets/libSockets.a \
options.o
EXECUTABLE = anyrtpproxy
@@ -28,6 +44,9 @@ anyrtpproxy: $(OBJS)
options.o: options.cpp options.h
$(C++) $(CCFLAGS) $< -c
+connectionList.o: connectionList.cpp connectionList.h
+ $(C++) $(CCFLAGS) $< -c
+
anyrtpproxy.o: anyrtpproxy.cpp
$(C++) $(CCFLAGS) $< -c