summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-12-13 14:56:21 +0000
committerErwin Nindl <nine@wirdorange.org>2007-12-13 14:56:21 +0000
commit67bcecfc7aa4b2a8208c87a3593e8408ac9143a5 (patch)
tree999430542ed49b209dd7f61a8c30285cef55f9cb /Makefile
parentadded PlainPacket class (diff)
added plainpaket.o to makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f0bcf10..5b1fe80 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@ OBJS = anytun.o \
buffer.o \
syncBuffer.o \
packet.o \
+ plainPacket.o \
cypher.o \
authAlgo.o \
authTag.o \
@@ -91,6 +92,9 @@ syncBuffer.o: syncBuffer.cpp syncBuffer.h
packet.o: packet.cpp packet.h buffer.h
$(C++) $(CCFLAGS) $< -c
+plainPacket.o: plainPacket.cpp plainPacket.h buffer.h
+ $(C++) $(CCFLAGS) $< -c
+
cypher.o: cypher.cpp cypher.h buffer.h
$(C++) $(CCFLAGS) $< -c