summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-08-09 13:41:08 +0000
committerErwin Nindl <nine@wirdorange.org>2007-08-09 13:41:08 +0000
commitdce7b21c7ae5f97ce9f06fc00582e5bf3033c9c4 (patch)
tree2af3a1b0cce6d11f3ba6de6ac1d5413441542c28 /Makefile
parentrequest 390 (diff)
* added key derivation functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7314b20..e416cbc 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,7 @@ OBJS = anytun.o \
packet.o \
cypher.o \
authAlgo.o \
+ keyDerivation.o \
PracticalSocket.o \
signalController.o \
log.o \
@@ -68,6 +69,9 @@ cypher.o: cypher.cpp cypher.h buffer.h
authAlgo.o: authAlgo.cpp authAlgo.h buffer.h
$(C++) $(CCFLAGS) $< -c
+keyDerivation.o: keyDerivation.cpp keyDerivation.h
+ $(C++) $(CCFLAGS) $< -c
+
signalController.o: signalController.cpp signalController.h
$(C++) $(CCFLAGS) $< -c