home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c160 / 1.ddi / TEST / T4MSC.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-06-19  |  1.3 KB  |  42 lines

  1. REM Command file for Microsoft C 6.0
  2. REM
  3. REM Erasing files: 't4*.exe', 't4*.obj' and 'out'.
  4. REM Press Ctrl C or Break to Abort
  5. PAUSE
  6. erase out
  7. erase t4*.obj
  8. erase t4*.exe
  9. cl -DMSC -Gs -Gr -qc -Od -AL t4*.c >>out
  10. link t4conv.obj,,,M4.LIB,   /stack:10000  /SE:500
  11. link t4expr.obj,,,M4.LIB,   /stack:10000  /SE:500
  12. link t4index.obj,,,M4.LIB,  /stack:10000  /SE:500
  13. link t4memo.obj,,,M4.LIB,   /stack:10000  /SE:500
  14. link t4open.obj,,,M4.LIB,   /stack:10000  /SE:500
  15. link t4pack_z.obj,,,M4.LIB, /stack:10000  /SE:500
  16. link t4seek.obj,,,M4.LIB,   /stack:10000  /SE:500
  17. link t4skip.obj,,,M4.LIB,   /stack:10000  /SE:500
  18. link t4sort.obj,,,M4.LIB,   /stack:10000  /SE:500
  19. link t4sort2.obj,,,M4.LIB,  /stack:10000  /SE:500
  20. link t4write.obj,,,M4.LIB,  /stack:10000  /SE:500
  21. link t4write2.obj,,,M4.LIB, /stack:10000  /SE:500
  22. link t4large.obj,,,M4.LIB,  /stack:10000  /SE:500
  23. link t4date.obj,,,M4.LIB,   /stack:10000  /SE:500
  24. t4conv  >>out
  25. t4expr  >>out
  26. t4index 1000 >>out
  27. t4memo  >>out
  28. t4open 200 >>out
  29. t4pack_z 1000 100 >>out
  30. t4seek 999 >>out
  31. t4skip  >>out
  32. t4sort  1000 >>out
  33. t4sort2 1000 >>out
  34. t4write >>out
  35. t4write2 1000 >>out
  36. ECHO  t4large takes a long time to execute.
  37. t4large >>out
  38. ECHO  t4date takes a long time to execute.
  39. t4date  >>out
  40. type out
  41. 
  42.