summaryrefslogtreecommitdiff
path: root/security/sslwrap/files/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'security/sslwrap/files/Makefile')
-rw-r--r--security/sslwrap/files/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/security/sslwrap/files/Makefile b/security/sslwrap/files/Makefile
deleted file mode 100644
index 86881668dca..00000000000
--- a/security/sslwrap/files/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# $NetBSD#
-
-
-SRC = s_server.c s_socket.c s_cb.c
-
-# For Solaris2.6
-#EXTLIBS = -lxnet
-
-# Debug/Optimizations
-#OPT = -g
-OPT = -O2
-
-# Define
-OPENSSL="\"openssl/\""
-#OPENSSL=""
-
-all :
- gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
- ${SSL_LIBDIR} -lssl -lcrypto \
- ${SSL_INCDIR} \
- ${EXTLIBS}
-
-clean:
- rm -f sslwrap *.o *~
-
-
-
-
-
-