summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-12-24 17:05:26 +0000
committerErwin Nindl <nine@wirdorange.org>2007-12-24 17:05:26 +0000
commit00febb25de92b1cd01309cc0f253ed4c3a761b13 (patch)
treeba0ffffdaf897e96ec2237a03cc523a4025b52f5 /Makefile
parentmesh syncing works now (diff)
weihnachtlicher checkin
* packet processing now with less memory operations than before * todo: * testing * set cipher / authalgo via commandline * set key operations for hmac calculation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c643e07..d5f6f52 100644
--- a/Makefile
+++ b/Makefile
@@ -52,6 +52,7 @@ OBJS = anytun.o \
syncCommand.o \
packet.o \
plainPacket.o \
+ encryptedPacket.o \
cypher.o \
authAlgo.o \
authTag.o \
@@ -98,6 +99,9 @@ packet.o: packet.cpp packet.h buffer.h
plainPacket.o: plainPacket.cpp plainPacket.h buffer.h
$(C++) $(CCFLAGS) $< -c
+encryptedPacket.o: encryptedPacket.cpp encryptedPacket.h buffer.h
+ $(C++) $(CCFLAGS) $< -c
+
cypher.o: cypher.cpp cypher.h buffer.h
$(C++) $(CCFLAGS) $< -c