home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / MATH / BUILDIT.BAT next >
DOS Batch File  |  1990-11-13  |  2KB  |  47 lines

  1. echo off
  2. echo This software may contain a machine independent set of math packages.
  3. echo No warranty expressed or implied is given for this software.
  4. echo Use at your own risk! The authors and ACM and SIGAda disclaim any
  5. echo responsibility for use of the enclosed software.
  6. echo Various people contributed software that make up this disk.
  7. echo Some changes have been made in an attempt to make the packages look
  8. echo like proposed standard numerical packages.
  9. echo Some packages are not complete.
  10. echo Full testing to the proposed standards has not been finished.
  11. echo The proposed standards may change before being approved.
  12. echo ( Despite the above disclaimer, you may find the code very useful. )
  13. echo .
  14.  
  15. echo WARNING:  This library is being compiled with the -fF option
  16. echo           which requires an 80x87 numeric co-processor chip
  17. echo           to be installed on the machine that you run the
  18. echo           program on.  If this is not the case, remove the
  19. echo           -fF option and remember to use the bamp -u option
  20. echo           when you link the program.
  21. pause CHECK COMPILER OPTIONS BEING USED:  ada -fsF
  22.  
  23. echo on
  24. goto start
  25. :start
  26. ada -fsF mc2_.a
  27. if errorlevel 1 goto quit
  28. ada -fsF efe_.a
  29. if errorlevel 1 goto quit
  30. ada -fsF gefstd_.a
  31. if errorlevel 1 goto quit
  32. ada -fsF gefpc.a
  33. if errorlevel 1 goto quit
  34.  
  35. ada -fsF tgef.a
  36. if errorlevel 1 goto quit
  37. bamp testelem
  38. if errorlevel 1 goto quit
  39.  
  40. rem PROGRAM SUCCESSFULLY BUILT
  41. rem Run testelem to test it out.
  42. goto done
  43. :quit
  44. rem ERRORS IN COMPILE OR LINK
  45. :done
  46. rem
  47.