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

  1. REM Command file for Watcom C 386
  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*.exp
  9. wcl386 -w3 -od -d2 -k10000 t4conv.c W4.LIB
  10. wcl386 -w3 -od -d2 -k10000 t4expr.c W4.LIB
  11. wcl386 -w3 -od -d2 -k10000 t4index.c W4.LIB
  12. wcl386 -w3 -od -d2 -k10000 t4memo.c W4.LIB
  13. wcl386 -w3 -od -d2 -k10000 t4open.c W4.LIB
  14. wcl386 -w3 -od -d2 -k10000 t4pack_z.c W4.LIB
  15. wcl386 -w3 -od -d2 -k10000 t4seek.c W4.LIB
  16. wcl386 -w3 -od -d2 -k10000 t4skip.c W4.LIB
  17. wcl386 -w3 -od -d2 -k10000 t4sort.c W4.LIB
  18. wcl386 -w3 -od -d2 -k10000 t4sort2.c W4.LIB
  19. wcl386 -w3 -od -d2 -k10000 t4write.c W4.LIB
  20. wcl386 -w3 -od -d2 -k10000 t4write2.c W4.LIB
  21. wcl386 -w3 -od -d2 -k10000 t4large.c W4.LIB
  22. wcl386 -w3 -od -d2 -k10000 t4date.c W4.LIB
  23. run386 t4conv  >>out
  24. run386 t4expr  >>out
  25. run386 t4index 1000 >>out
  26. run386 t4memo  >>out
  27. run386 t4open 200 >>out
  28. run386 t4pack_z 1000 100 >>out
  29. run386 t4seek 999 >>out
  30. run386 t4skip  >>out
  31. run386 t4sort  1000 >>out
  32. run386 t4sort2 1000 >>out
  33. run386 t4write >>out
  34. run386 t4write2 1000 >>out
  35. ECHO  t4large takes a long time to execute.
  36. run386 t4large >>out
  37. ECHO  t4date takes a long time to execute.
  38. run386 t4date  >>out
  39. 
  40.