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 37cd8bf..d2461ad 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -50,6 +50,7 @@ OBJS = log.o \
tun.o \
udp.o \
plain_packet.o \
+ encrypted_packet.o \
uanytun.o
EXECUTABLE = uanytun
@@ -77,6 +78,9 @@ udp.o: udp.c udp.h
plain_packet.o: plain_packet.c plain_packet.h
$(CC) $(CCFLAGS) $< -c
+encrypted_packet.o: encrypted_packet.c encrypted_packet.h
+ $(CC) $(CCFLAGS) $< -c
+
distclean: clean
find . -name *.o -exec rm -f {} \;
find . -name "*.\~*" -exec rm -rf {} \;