diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-02-22 20:07:08 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-02-22 20:07:08 +0000 |
commit | 60ea765c61f6721e812df5ab615c14edbe4d3f03 (patch) | |
tree | 96c4f2cd72e31b583c616a9366d59e369761b5f6 /Makefile | |
parent | fixed bug with secure memory (don't activate authentication!) (diff) |
added routing table basic structure
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |