summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-22 20:07:08 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-22 20:07:08 +0000
commit60ea765c61f6721e812df5ab615c14edbe4d3f03 (patch)
tree96c4f2cd72e31b583c616a9366d59e369761b5f6 /Makefile
parentfixed bug with secure memory (don't activate authentication!) (diff)
added routing table basic structure
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8b61a2e..4552c17 100644
--- a/Makefile
+++ b/Makefile
@@ -64,6 +64,8 @@ OBJS = anytun.o \
networkAddress.o \
PracticalSocket.o \
router.o \
+ routingTable.o \
+ routingTableEntry.o \
signalController.o \
syncSocket.o \
syncSocketHandler.o \
@@ -121,6 +123,12 @@ cipherFactory.o: cipherFactory.cpp cipherFactory.h cipher.h
authAlgoFactory.o: authAlgoFactory.cpp authAlgoFactory.h authAlgo.h
$(C++) $(CCFLAGS) $< -c
+routingTable.o: routingTable.cpp routingTable.h
+ $(C++) $(CCFLAGS) $< -c
+
+routingTableEntry.o: routingTableEntry.cpp routingTableEntry.h
+ $(C++) $(CCFLAGS) $< -c
+
syncSocket.o: syncSocket.cpp syncSocket.h
$(C++) $(CCFLAGS) $< -c