summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-12-27 11:57:12 +0000
committerErwin Nindl <nine@wirdorange.org>2007-12-27 11:57:12 +0000
commita3e710fbd44ca8a0f4840b4e3366c6fc946ecfc5 (patch)
treeb5b189fa102e382da25b8c7385e628ed3889b335 /Makefile
parentadded anytun to isakmpd (diff)
* cypher and auth-algo selectable via commandline
* libgcrypt uses secure memory now * a few bugfixes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d5f6f52..9e5c414 100644
--- a/Makefile
+++ b/Makefile
@@ -58,6 +58,8 @@ OBJS = anytun.o \
authTag.o \
keyDerivation.o \
mpi.o \
+ cypherFactory.o \
+ authAlgoFactory.o \
connectionList.o \
connectionParam.o \
networkAddress.o \
@@ -117,6 +119,12 @@ keyDerivation.o: keyDerivation.cpp keyDerivation.h
mpi.o: mpi.cpp mpi.h
$(C++) $(CCFLAGS) $< -c
+cypherFactory.o: cypherFactory.cpp cypherFactory.h cypher.h
+ $(C++) $(CCFLAGS) $< -c
+
+authAlgoFactory.o: authAlgoFactory.cpp authAlgoFactory.h authAlgo.h
+ $(C++) $(CCFLAGS) $< -c
+
syncSocket.o: syncSocket.cpp syncSocket.h
$(C++) $(CCFLAGS) $< -c