diff options
author | Erwin Nindl <nine@wirdorange.org> | 2007-12-13 14:56:21 +0000 |
---|---|---|
committer | Erwin Nindl <nine@wirdorange.org> | 2007-12-13 14:56:21 +0000 |
commit | 67bcecfc7aa4b2a8208c87a3593e8408ac9143a5 (patch) | |
tree | 999430542ed49b209dd7f61a8c30285cef55f9cb /Makefile | |
parent | added PlainPacket class (diff) |
added plainpaket.o to makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |