summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-12-28 10:36:20 +0000
committerChristian Pointner <equinox@anytun.org>2008-12-28 10:36:20 +0000
commit65dd1b1e7b663d5b1f18171ff1de0b46a6196d2c (patch)
tree5591bf544a9aa2d84bcf906b57893b8b9c19aabd /src/Makefile
parentadded plain packet (diff)
added encrypted packet
some cleanup
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 {} \;