summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2007-06-17 16:14:34 +0000
committerChristian Pointner <equinox@anytun.org>2007-06-17 16:14:34 +0000
commit87735d1c20816e8c1c0092a86dc8d1ab80ab36db (patch)
tree84b8850480ed94d3b8862a757804c8e2a821783b /Makefile
parentbugfixes @ tunDevice (diff)
added cypher and authalgo
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 12 insertions, 3 deletions
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)