summaryrefslogtreecommitdiff
path: root/config_office/bootstrap.1
blob: e6ef0eabd92f7b6258cd64e54f355a809a73acb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

set platform = `uname`

if ( ! -f $SRC_ROOT/dmake/dmake ) then

cd $SRC_ROOT/dmake

if ($platform == "SunOS") then
   make Solaris2.1
else if ($platform == "Linux" || $platform == "NetBSD" || $platform == "FreeBSD") then
   autogen.sh;configure;make;make install
else if ($platform == "OSF1") then
   make tru64
else if ($platform == "IRIX" || $platform == "IRIX64") then
   make irix
else if ($platform == "Darwin") then
   make macosx
endif

if "$?" != "0" exit

cd ..

endif