objects may now be separated from sources M.Z.

SKIPPED:
	psi/make_gen
	psi/makefile
	psi/makefile_alpha
	psi/makefile_linux
	psi/hardsup/make_gen
	psi/hardsup/makefile
	psi/hardsup/makefile_alpha
	psi/hardsup/makefile_linux
	psi/tecs/make_gen
	psi/tecs/makefile
	psi/tecs/makefile_linux
This commit is contained in:
cvs
2003-08-25 14:28:19 +00:00
parent acf5634ef7
commit e1839599f3
21 changed files with 181 additions and 96 deletions

32
maketree Executable file
View File

@@ -0,0 +1,32 @@
#!/bin/tcsh
# create the version specific object tree
#
# M.Zolliker 08.2003
#
if ("$SICS_VERSION" == "") then
echo SICS_VERSION undefined
else
set SICS_ROOT=${0:h}
# determine object directory
set o="$SICS_ROOT/obj/$SICS_VERSION/$1"
# determine makefile
set m="$SICS_ROOT/$1/makefile_$SICS_VERSION"
if (-e $m) then
if (! -e $o) then
echo create directory $o
mkdir -p $o
else
echo $o exists
endif
rm -f $o/src
echo ln -s $SICS_ROOT/$1 $o/src
ln -s $SICS_ROOT/$1 $o/src
endif
endif