Dmake: Create bootstrap patches based on subbranch of head
This commit is contained in:
parent
f841ccc4b3
commit
2aacc1aaf3
1 changed files with 9 additions and 15 deletions
|
@ -1,24 +1,18 @@
|
|||
|
||||
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 $?
|
||||
|
||||
./configure
|
||||
if "$?" != "0" exit $?
|
||||
|
||||
make
|
||||
if "$?" != "0" exit $?
|
||||
|
||||
echo ""
|
||||
echo "dmake as been successfully built"
|
||||
|
||||
cd ..
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue