summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-12-23 11:18:11 +0000
committerOthmar Gsenger <otti@anytun.org>2007-12-23 11:18:11 +0000
commitc20c54ce8fef7f0edbafda26e9a202377f0ac895 (patch)
treee9f2f216e0566455058082f3b9bed934b02b5dd7 /Makefile
parentfixed sender (no packets error) (diff)
added SyncQueue and SyncSocketHandler
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 47d9409..c643e07 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,9 @@ OBJS = anytun.o \
router.o \
signalController.o \
syncSocket.o \
+ syncSocketHandler.o \
syncClientSocket.o \
+ syncQueue.o \
log.o \
options.o \
seqWindow.o \
@@ -114,12 +116,18 @@ mpi.o: mpi.cpp mpi.h
syncSocket.o: syncSocket.cpp syncSocket.h
$(C++) $(CCFLAGS) $< -c
+syncSocketHandler.o: syncSocketHandler.cpp syncSocketHandler.h
+ $(C++) $(CCFLAGS) $< -c
+
syncCommand.o: syncCommand.cpp syncCommand.h
$(C++) $(CCFLAGS) $< -c
syncClientSocket.o: syncClientSocket.cpp syncClientSocket.h
$(C++) $(CCFLAGS) $< -c
+syncQueue.o: syncQueue.cpp syncQueue.h
+ $(C++) $(CCFLAGS) $< -c
+
signalController.o: signalController.cpp signalController.h
$(C++) $(CCFLAGS) $< -c