home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
MATH
/
BUILDIT.BAT
next >
Wrap
DOS Batch File
|
1990-11-13
|
2KB
|
47 lines
echo off
echo This software may contain a machine independent set of math packages.
echo No warranty expressed or implied is given for this software.
echo Use at your own risk! The authors and ACM and SIGAda disclaim any
echo responsibility for use of the enclosed software.
echo Various people contributed software that make up this disk.
echo Some changes have been made in an attempt to make the packages look
echo like proposed standard numerical packages.
echo Some packages are not complete.
echo Full testing to the proposed standards has not been finished.
echo The proposed standards may change before being approved.
echo ( Despite the above disclaimer, you may find the code very useful. )
echo .
echo WARNING: This library is being compiled with the -fF option
echo which requires an 80x87 numeric co-processor chip
echo to be installed on the machine that you run the
echo program on. If this is not the case, remove the
echo -fF option and remember to use the bamp -u option
echo when you link the program.
pause CHECK COMPILER OPTIONS BEING USED: ada -fsF
echo on
goto start
:start
ada -fsF mc2_.a
if errorlevel 1 goto quit
ada -fsF efe_.a
if errorlevel 1 goto quit
ada -fsF gefstd_.a
if errorlevel 1 goto quit
ada -fsF gefpc.a
if errorlevel 1 goto quit
ada -fsF tgef.a
if errorlevel 1 goto quit
bamp testelem
if errorlevel 1 goto quit
rem PROGRAM SUCCESSFULLY BUILT
rem Run testelem to test it out.
goto done
:quit
rem ERRORS IN COMPILE OR LINK
:done
rem