Dmake: Create bootstrap patches based on subbranch of head

This commit is contained in:
Ken Foskey 2002-10-09 12:17:17 +00:00
parent f841ccc4b3
commit 2aacc1aaf3

View file

@ -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