2000-09-18 10:18:56 -05:00
|
|
|
|
|
|
|
set platform = `uname`
|
|
|
|
|
|
|
|
cd dmake
|
|
|
|
|
|
|
|
if ($platform == "SunOS") then
|
|
|
|
make Solaris2.1
|
|
|
|
else if ($platform == "Linux") then
|
|
|
|
make linux
|
2000-10-31 01:34:46 -06:00
|
|
|
else if ($platform == "FreeBSD") then
|
|
|
|
make linux
|
2000-09-18 10:18:56 -05:00
|
|
|
else if ($platform == "Darwin") then
|
|
|
|
make macosx
|
|
|
|
endif
|
|
|
|
|
|
|
|
if "$?" != "0" exit
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|