2000-09-18 10:18:56 -05:00
|
|
|
|
|
|
|
set platform = `uname`
|
|
|
|
|
|
|
|
cd dmake
|
|
|
|
|
|
|
|
if ($platform == "SunOS") then
|
|
|
|
make Solaris2.1
|
2000-12-18 13:15:35 -06:00
|
|
|
else if ($platform == "Linux" || $platform == "NetBSD" || $platform == "FreeBSD") then
|
2000-10-31 01:34:46 -06:00
|
|
|
make linux
|
2000-11-07 09:39:06 -06:00
|
|
|
else if ($platform == "OSF1") then
|
|
|
|
make tru64
|
2000-11-20 06:52:11 -06:00
|
|
|
else if ($platform == "Irix" || $platform == "Irix64") then
|
|
|
|
make irix
|
2000-09-18 10:18:56 -05:00
|
|
|
else if ($platform == "Darwin") then
|
|
|
|
make macosx
|
|
|
|
endif
|
|
|
|
|
|
|
|
if "$?" != "0" exit
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|