home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cbase.zip / CBASE10B.ZIP / ROLODECK.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-10-31  |  1KB  |  33 lines

  1. @echo off
  2. rem rolodeck installation batch file--------------------------------------------
  3. rem #ident    "install.bat    1.2 - 89/10/31"
  4.  
  5. rem check if required libraries installed---------------------------------------
  6. if exist \tc\include\cbase.h goto cbase
  7. echo The cbase library must be installed first.
  8. goto end
  9. :cbase
  10.  
  11. rem extract the reference manual------------------------------------------------
  12. if not exist rolodeck.man goto man
  13. echo rolodeck.man exists.  ^c to exit, any other key to continue.
  14. pause
  15. :man
  16. if not exist tmp goto tmp
  17. echo tmp exists.  ^c to exit, any other key to continue.
  18. pause
  19. :tmp
  20. echo on
  21. copy rolodeck.h/a+rolodeck.c+cvtss.c+fml.c tmp
  22. type tmp | manx -c > rolodeck.man
  23. del tmp
  24. @echo off
  25.  
  26. rem make rolodeck program-------------------------------------------------------
  27. echo on
  28. tcc -O -C- -mh cbase.lib btree.lib lseq.lib blkio.lib rolodeck.c cvtss.c fml.c
  29. @echo off
  30.  
  31. rem end of rolodeck installation batch file-------------------------------------
  32. :end
  33.