aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-03-14 13:56:00 +0000
committerBodo Möller <bodo@openssl.org>2000-03-14 13:56:00 +0000
commit24aaff588a5c72128aa30dedf12d6938586ddaf2 (patch)
tree0b0cea77e04d14b1c07d72abded44ce4bbf920a8 /util
parentd8779db47b16486bb9d081a910c56e6f22ecfa85 (diff)
downloadopenssl-24aaff588a5c72128aa30dedf12d6938586ddaf2.tar.gz
Remove "Makefile.uni" files and some related stuff.
This was meant for building individual ciphers separately; but nothing of this is maintained, it does not work because we rely on central configuration by the Configure utility with <openssl/opensslconf.h> etc., so the files are only wasting space and time.
Diffstat (limited to 'util')
-rwxr-xr-xutil/sep_lib.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/util/sep_lib.sh b/util/sep_lib.sh
deleted file mode 100755
index 34c2c9f8ba..0000000000
--- a/util/sep_lib.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-cwd=`pwd`
-/bin/rm -fr tmp/*
-
-cd crypto/des
-make -f Makefile.uni tar
-make -f Makefile.uni tar_lit
-/bin/mv libdes.tgz $cwd/tmp
-/bin/mv libdes-l.tgz $cwd/tmp
-cd $cwd
-
-for name in md5 sha cast bf idea rc4 rc2
-do
- echo doing $name
- (cd crypto; tar cfh - $name)|(cd tmp; tar xf -)
- cd tmp/$name
- /bin/rm -f Makefile
- /bin/rm -f Makefile.ssl
- /bin/rm -f Makefile.ssl.orig
- /bin/rm -f *.old
- /bin/mv Makefile.uni Makefile
-
- if [ -d asm ]; then
- mkdir asm/perlasm
- cp $cwd/crypto/perlasm/*.pl asm/perlasm
- fi
- cd ..
- tar cf - $name|gzip >$name.tgz
-# /bin/rm -fr $name
- cd $cwd
-done
-
-