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

  1. REM Test Code Command File for Zortech C++
  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. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4conv.c >>out
  10. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4expr.c >>out
  11. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4index.c >>out
  12. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4memo.c >>out
  13. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4open.c >>out
  14. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4pack_z.c >>out
  15. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4seek.c >>out
  16. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4skip.c >>out
  17. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4sort.c >>out
  18. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4sort2.c >>out
  19. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4write.c >>out
  20. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4write2.c >>out
  21. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4large.c >>out
  22. ztc -b =30000 -cpp -c -g -DZORTECH  -ml -p -s t4date.c >>out
  23. blink t4conv.obj,,,Z4.LIB   /stack:10000  
  24. blink t4expr.obj,,,Z4.LIB   /stack:10000  
  25. blink t4index.obj,,,Z4.LIB  /stack:10000  
  26. blink t4memo.obj,,,Z4.LIB   /stack:10000  
  27. blink t4open.obj,,,Z4.LIB   /stack:10000  
  28. blink t4pack_z.obj,,,Z4.LIB /stack:10000  
  29. blink t4seek.obj,,,Z4.LIB   /stack:10000  
  30. blink t4skip.obj,,,Z4.LIB   /stack:10000  
  31. blink t4sort.obj,,,Z4.LIB   /stack:10000  
  32. blink t4sort2.obj,,,Z4.LIB  /stack:10000  
  33. blink t4write.obj,,,Z4.LIB  /stack:10000  
  34. blink t4write2.obj,,,Z4.LIB /stack:10000  
  35. blink t4large.obj,,,Z4.LIB  /stack:10000  
  36. blink t4date.obj,,,Z4.LIB   /stack:10000  
  37. t4conv  >>out
  38. t4expr  >>out
  39. t4index 1000 >>out
  40. t4memo  >>out
  41. t4open 200 >>out
  42. t4pack_z 1000 100 >>out
  43. t4seek 999 >>out
  44. t4skip  >>out
  45. t4sort  1000 >>out
  46. t4sort2 1000 >>out
  47. t4write >>out
  48. t4write2 1000 >>out
  49. ECHO  t4large takes a long time to execute.
  50. t4large >>out
  51. ECHO  t4date takes a long time to execute.
  52. t4date  >>out
  53. type out
  54.  
  55.  
  56. 
  57.