summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-10 00:17:29 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-10 00:17:29 +0000
commita3497b930872853c792605b3d08529316cc8413a (patch)
tree382e218703f2fed55ecce10d839da5a476ad3ed0 /src/Makefile
parentimproved Makefile and configure script (diff)
no crypto wokrs now with new build scripts
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index f5eea2c..ef90eeb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -38,7 +38,7 @@ DEPENDFILE = .depend
EXECUTABLE = uanytun
CRYPT_OBJ = key_derivation.o \
- auth_algo.o
+ auth_algo.o
OBJ = log.o \
signal.o \
options.o \
@@ -50,7 +50,10 @@ OBJ = log.o \
cipher.o \
uanytun.o
+
+ifndef NO_CRYPT_OBJ
OBJ += $(CRYPT_OBJ)
+endif
SRC = $(OBJ:%.o=%.c)