Codebase list cppad / upstream/2014.04.08 bin / svn_ignore.sh
upstream/2014.04.08

Tree @upstream/2014.04.08 (Download .tar.gz)

svn_ignore.sh @upstream/2014.04.08raw · history · blame

#! /bin/bash -e
# $Id: svn_ignore.sh 2875 2013-07-29 11:56:01Z bradbell $
# -----------------------------------------------------------------------------
# CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-13 Bradley M. Bell
#
# CppAD is distributed under multiple licenses. This distribution is under
# the terms of the 
#                     GNU General Public License Version 3.
#
# A copy of this license is included in the COPYING file of this distribution.
# Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
# -----------------------------------------------------------------------------
if [ $0 != "bin/svn_ignore.sh" ]
then
	echo "bin/svn_ignore.sh: must be executed from its parent directory"
	exit 1
fi
# -----------------------------------------------------------------------------
cat << EOF > bin/svn_ignore.$$
aclocal.m4
autom4te.cache
build
check_all.err
commit.sh.old
configure.hpp
doc
doxydoc
doxyfile
doxyfile.*
doxygen.err
junk
junk.*
*.log
new
temp
temp.sh
test_one.exe
test_one.sh
test_one.cpp
*.tmp
EOF
svn propset svn:ignore --recursive -F bin/svn_ignore.$$ .
rm bin/svn_ignore.$$
#
exit 0