summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-12-28 18:38:42 +0000
committerChristian Pointner <equinox@anytun.org>2008-12-28 18:38:42 +0000
commit0879909b08d2c9d95fcd544e5ad9b8598b856df4 (patch)
tree01c67e901804a054a6674223bdfd5d7cf231f50f /src/Makefile
parentcleaned up main loop (still some building blocks missing) (diff)
added cipher (net tested yet)
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 de8a6bb..5339971 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -52,6 +52,7 @@ OBJS = log.o \
udp.o \
plain_packet.o \
encrypted_packet.o \
+ cipher.o \
uanytun.o
EXECUTABLE = uanytun
@@ -85,6 +86,9 @@ plain_packet.o: plain_packet.c plain_packet.h
encrypted_packet.o: encrypted_packet.c encrypted_packet.h
$(CC) $(CCFLAGS) $< -c
+cipher.o: cipher.c cipher.h
+ $(CC) $(CCFLAGS) $< -c
+
distclean: clean
find . -name *.o -exec rm -f {} \;
find . -name "*.\~*" -exec rm -rf {} \;