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