diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |