1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-07-28 12:57:06 +01:00

LatCore compatibility

This commit is contained in:
2015-02-23 18:11:37 +00:00
parent 2ff01209f9
commit 232c9b7948
21 changed files with 89 additions and 5914 deletions

View File

@@ -1,18 +0,0 @@
#!/usr/bin/env bash
if (( $# != 1 )); then
echo "usage: `basename $0` <archive>" 1>&2
fi
ARC=$1
INITDIR=`pwd`
rm -rf latan/Eigen
ARCDIR=`tar -tf ${ARC} | head -n1 | sed -e 's@/.*@@'`
tar -xf ${ARC}
cd ${ARCDIR}
tar -cf - Eigen --exclude='*.txt' | tar -xf - -C ../latan/
cd ../latan
echo 'eigen_files =\' > eigen_files.mk
find Eigen -type f -print | sed 's/^/ /;$q;s/$/ \\/' >> eigen_files.mk
cd ${INITDIR}
rm -rf ${ARCDIR}