aboutsummaryrefslogtreecommitdiff
path: root/openssl/tests/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-01-20 13:41:20 +0000
committerRob Austein <sra@hactrn.net>2011-01-20 13:41:20 +0000
commit81fbac5c5165e53236b821e9238aafeebc4076fd (patch)
tree1f837a9eb445285621634651238f9dd417d6f96f /openssl/tests/Makefile
parent3debee4485f6668dcc3e74fac26163350edfdd22 (diff)
Fix all the broken RPATH stuff we said we'd fix "some day".
svn path=/configure; revision=3615
Diffstat (limited to 'openssl/tests/Makefile')
-rw-r--r--openssl/tests/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/openssl/tests/Makefile b/openssl/tests/Makefile
deleted file mode 100644
index 4e38c699..00000000
--- a/openssl/tests/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# $Id$
-
-OPENSSL_DIR = ../openssl
-
-CFLAGS = -g -I${OPENSSL_DIR}/include
-
-# -H -Wl,-t
-
-BIN = resource-set-test
-OBJ = resource-set-test.o
-LIB = ${OPENSSL_DIR}/libcrypto.a
-
-all: ${BIN}
-
-clean:
- rm -f ${BIN} ${OBJ}
-
-${BIN}: ${OBJ} ${LIB} Makefile
- ${CC} -g -o $@ ${OBJ} ${LIB}
-
-# This test needs more work
-
-test: ${BIN} test.cer
- ./${BIN} -v -a AS:17 -i IPv4:10.0.0.44 -d test.cer
-
-test.cer: test.conf
- ${OPENSSL_DIR}/apps/openssl req -new -x509 -config test.conf -keyout test.key -out test.cer -outform DER
-
-distclean: clean
- rm -f test.key test.cer