office-gobmx/config_office/bootstrap.1

26 lines
480 B
Groff
Raw Normal View History

2000-09-18 10:18:56 -05:00
set platform = `uname`
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
else if ($platform == "Linux" || $platform == "NetBSD" || $platform == "FreeBSD") then
2001-07-30 06:19:40 -05:00
autogen.sh;configure;make;make install
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 ..
endif