summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-12-28 10:08:58 +0000
committerChristian Pointner <equinox@anytun.org>2008-12-28 10:08:58 +0000
commit93c4454143a511409efd692e3687d295e3db9314 (patch)
treec6a2a8eee705bf0921f757f36e8636d964f233a8 /src/Makefile
parentsome cleanup (diff)
added plain packet
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 {} \;