summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-12-08 17:57:31 +0000
committerErwin Nindl <nine@wirdorange.org>2007-12-08 17:57:31 +0000
commit62d31032352f8d857f31d89872fd42b98501e1c3 (patch)
tree8caaa3f1ff16281e45ff0d3c9357708b5efbe74c /Makefile
parentremoved doxygen folders from svn (diff)
* added AuthTag class
* bugfixes in keyderivation, aesicmcypher * removed authtag functins temorarly from anytun.cpp
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ae4993f..4cc2469 100644
--- a/Makefile
+++ b/Makefile
@@ -51,6 +51,7 @@ OBJS = anytun.o \
packet.o \
cypher.o \
authAlgo.o \
+ authTag.o \
keyDerivation.o \
connectionList.o \
connectionParam.o \
@@ -90,6 +91,9 @@ cypher.o: cypher.cpp cypher.h buffer.h
authAlgo.o: authAlgo.cpp authAlgo.h buffer.h
$(C++) $(CCFLAGS) $< -c
+authTag.o: authTag.cpp authTag.h buffer.h
+ $(C++) $(CCFLAGS) $< -c
+
keyDerivation.o: keyDerivation.cpp keyDerivation.h
$(C++) $(CCFLAGS) $< -c