diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 8372395..975c375 100644 --- a/src/Makefile +++ b/src/Makefile @@ -55,6 +55,7 @@ OBJS = log.o \ encrypted_packet.o \ seq_window.o \ cipher.o \ + key_derivation.o \ uanytun.o EXECUTABLE = uanytun @@ -94,6 +95,9 @@ seq_window.o: seq_window.c seq_window.h cipher.o: cipher.c cipher.h $(CC) $(CCFLAGS) $< -c +key_derivation.o: key_derivation.c key_derivation.h + $(CC) $(CCFLAGS) $< -c + distclean: clean find . -name *.o -exec rm -f {} \; find . -name "*.\~*" -exec rm -rf {} \; |