From 87735d1c20816e8c1c0092a86dc8d1ab80ab36db Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 17 Jun 2007 16:14:34 +0000 Subject: added cypher and authalgo --- Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a577f5d..9714f79 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ OPENVPNDEPS = openvpn/tun.o \ -OBJS = anytun.o tunDevice.o buffer.o $(OPENVPNDEPS) +OBJS = anytun.o tunDevice.o buffer.o cypher.o authAlgo.o $(OPENVPNDEPS) EXECUTABLE = anytun all: $(EXECUTABLE) @@ -42,7 +42,16 @@ anytun: $(OBJS) tunDevice.o: tunDevice.cpp tunDevice.h $(C++) $(CCFLAGS) $< -c -Buffer.o: buffer.cpp buffer.h +buffer.o: buffer.cpp buffer.h + $(C++) $(CCFLAGS) $< -c + +cypher.o: cypher.cpp cypher.h buffer.h + $(C++) $(CCFLAGS) $< -c + +cypher.o: cypher.cpp cypher.h buffer.h + $(C++) $(CCFLAGS) $< -c + +authAlgo.o: authAlgo.cpp authAlgo.h buffer.h $(C++) $(CCFLAGS) $< -c anytun.o: anytun.cpp @@ -50,4 +59,4 @@ anytun.o: anytun.cpp clean: rm -f *.o - rm -f $(EXECUTABLE) \ No newline at end of file + rm -f $(EXECUTABLE) -- cgit v1.2.3