summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-12-28 02:03:57 +0000
committerChristian Pointner <equinox@anytun.org>2008-12-28 02:03:57 +0000
commit505bf00dc22351d2b276c93403cac0e370a171a3 (patch)
tree972ace1d215af07f76f82abbb0bb85b7f88f12c8 /src/Makefile
parentadded datatypes.h (diff)
added udp socket
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 977cec6..881f1ff 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -48,6 +48,7 @@ endif
OBJS = log.o \
signal.o \
tun.o \
+ udp.o \
uanytun.o
EXECUTABLE = uanytun
@@ -69,6 +70,9 @@ signal.o: signal.c signal.h
tun.o: tun.c tun.h
$(CC) $(CCFLAGS) $< -c
+udp.o: udp.c udp.h
+ $(CC) $(CCFLAGS) $< -c
+
distclean: clean
find . -name *.o -exec rm -f {} \;
find . -name "*.\~*" -exec rm -rf {} \;