#!/bin/bash
#
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# 
# T2 SDE: scripts/Create-Links
# Copyright (C) 2004 - 2005 The T2 SDE Project
# Copyright (C) 1998 - 2003 ROCK Linux Project
# 
# More information can be found in the files COPYING and README.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---

linkconfig=""
linkbuild=""

while [ "$1" ] ; do
    case "$1" in
        -config)
		linkconfig=config ; shift ;;
        -build)
		linkbuild=build   ; shift ;;
        -*)
echo
echo "Usage: ./scripts/Create-Links [ -config ] [ -build ] target-dir"
echo
                exit 1 ;;
	*)
		break ;;
    esac
done

if [ -z "$1" -o "$#" != 1 -o ! -d "$1" ] ; then
	exec $0 --help
fi

for x in architecture target misc scripts Documentation \
         download package $linkconfig $linkbuild
do
	[ -e $x ] || mkdir $x
	[ -e $1/$x ] || ln -vs `pwd`/$x $1/$x
done

if [ ! -e $1/backup -a -e `pwd`/backup ] ; then
	ln -vs `pwd`/backup $1/backup
fi
