summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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