blob: aba8ca16711c0cac3bd0997b0f961dd7cd85cf70 [file] [log] [blame]
#!dont_run_this
# This file is sourced by */gen_links.sh
rm -f .gitignore
gen_link() {
src="$1"
f="$2"
echo "Linking $f"
ln -sf "$src" "$f"
echo "$f" >> .gitignore
}
gen_links() {
DIR=$1
shift
FILES=$*
for f in $FILES; do
gen_link "$DIR/$f" "$f"
done
}