summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index de8a6bb..5339971 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -52,6 +52,7 @@ OBJS = log.o \
udp.o \
plain_packet.o \
encrypted_packet.o \
+ cipher.o \
uanytun.o
EXECUTABLE = uanytun
@@ -85,6 +86,9 @@ plain_packet.o: plain_packet.c plain_packet.h
encrypted_packet.o: encrypted_packet.c encrypted_packet.h
$(CC) $(CCFLAGS) $< -c
+cipher.o: cipher.c cipher.h
+ $(CC) $(CCFLAGS) $< -c
+
distclean: clean
find . -name *.o -exec rm -f {} \;
find . -name "*.\~*" -exec rm -rf {} \;