2000-09-18 10:18:56 -05:00
|
|
|
|
|
|
|
set platform = `uname`
|
|
|
|
|
2001-05-04 13:01:39 -05:00
|
|
|
if ( ! -f $SRC_ROOT/dmake/dmake ) then
|
|
|
|
|
2001-07-30 06:19:40 -05:00
|
|
|
cd $SRC_ROOT/dmake
|
2000-09-18 10:18:56 -05:00
|
|
|
|
|
|
|
if ($platform == "SunOS") then
|
|
|
|
make Solaris2.1
|
2000-12-18 13:15:35 -06:00
|
|
|
else if ($platform == "Linux" || $platform == "NetBSD" || $platform == "FreeBSD") then
|
2001-07-30 06:19:40 -05:00
|
|
|
autogen.sh;configure;make;make install
|
2000-11-07 09:39:06 -06:00
|
|
|
else if ($platform == "OSF1") then
|
|
|
|
make tru64
|
2000-12-18 13:20:19 -06:00
|
|
|
else if ($platform == "IRIX" || $platform == "IRIX64") then
|
2000-11-20 06:52:11 -06:00
|
|
|
make irix
|
2000-09-18 10:18:56 -05:00
|
|
|
else if ($platform == "Darwin") then
|
|
|
|
make macosx
|
|
|
|
endif
|
|
|
|
|
|
|
|
if "$?" != "0" exit
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
2001-05-04 13:01:39 -05:00
|
|
|
endif
|
|
|
|
|