diff options
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 |