Remove deprecated scripts

This commit is contained in:
Andrew Schwartzmeyer 2015-10-12 19:57:16 -07:00
parent 0d4ebb38b8
commit 80bc66eaaa
2 changed files with 0 additions and 25 deletions

View file

@ -1,5 +0,0 @@
#!/bin/bash
branch=$(git for-each-ref --format=$'%(objectname) %(refname:short)' refs/heads | awk "/^$(git rev-parse HEAD)/ {print \$2}")
echo $branch

View file

@ -1,20 +0,0 @@
#!/bin/bash
if [ ! -d ext-src/cppunit ]; then
echo "Please call from root folder of project"
exit 1
fi
pushd ext-src/cppunit
./autogen.sh
CWD=$(pwd)
if [ -f Makefile ]; then
make distclean
fi
./configure LD=clang LDFLAGS="-stdlib=libc++" CXX=clang++ CC=clang CXXFLAGS="-stdlib=libc++" --prefix=$CWD/../../externals/cppunit
make
make install
popd