lots of source directory layout rearrangements and cleanups
[TestXSLT.git] / target_libxslt.sh
diff --git a/target_libxslt.sh b/target_libxslt.sh
deleted file mode 100644 (file)
index 7a38a36..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/sh
-
-cd libxslt
-
-if [ x$1 = 'xclean' ]; then
-
-       make clean
-       rm config.log
-       rm -rf $OBJROOT/libxslt/
-       exit
-
-fi
-
-if [ ! -f config.log ]; then
-
-       ./configure --disable-static --enable-shared --with-libxml-prefix=$OBJROOT/libxml2/ --prefix=$OBJROOT/libxslt/
-
-fi
-
-if [ ! -d $OBJROOT/libxslt/ ]; then
-
-       make install
-
-       LIBNAME=`find $OBJROOT/libxslt/lib/ -name "libxslt.*dylib" -type f`
-       LIBNAME=`basename $LIBNAME`
-       install_name_tool -id @executable_path/$LIBNAME $OBJROOT/libxslt/lib/$LIBNAME
-
-       LIBNAME=`find $OBJROOT/libxslt/lib/ -name "libexslt.*dylib" -type f`
-       LIBNAME=`basename $LIBNAME`
-       install_name_tool -id @executable_path/$LIBNAME $OBJROOT/libxslt/lib/$LIBNAME
-
-       LIBNAME=`find $OBJROOT/libxslt/lib/ -name "libxsltbreakpoint.*dylib" -type f`
-       LIBNAME=`basename $LIBNAME`
-       install_name_tool -id @executable_path/$LIBNAME $OBJROOT/libxslt/lib/$LIBNAME
-       
-fi
-
-
-
-
-
-
-
-