home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / TeX / DoIt < prev    next >
Text File  |  1995-05-25  |  2KB  |  129 lines

  1. ;
  2. ;  DoIt -- compile six different versions of initex and virtex
  3. ;          needs on my A3000 approx 4h
  4. ;          Different versions:
  5. ;        - norm-noop-00    : small TeX, not optimized, for 68000
  6. ;        - norm-00    : small TeX, optimized, for 68000
  7. ;        - big-00    : big TeX, optimized, for 68000
  8. ;        - norm-noop-20    : small TeX, not optimized, for 68020 and higher
  9. ;        - norm-20    : small TeX, optimized, for 68020 and higher
  10. ;        - big-20    : big TeX, optimized, for 68020 and higher
  11. ;
  12. ;  25.May.95 Georg Heßmann
  13.  
  14. assign doit: tex:src/tex
  15.  
  16. set out doit:logfile
  17.  
  18. echo NOLINE "Starte norm-00 no-opt " >$out
  19. date >>$out
  20.  
  21. cd doit:tex
  22. cp SCOPTIONS-noop-00 SCOPTIONS
  23. cp config.h-norm config.h
  24. cd doit:amiga
  25. delete #?.o
  26. cd doit:common
  27. delete #?.o
  28. cp SCOPTIONS-00 SCOPTIONS
  29. smake
  30. cd doit:tex
  31. delete #?.o
  32. smake -f Smakefile-norm-00
  33. rename initex virtex norm-noop-00
  34.  
  35.  
  36. echo NOLINE "Starte norm-00 opt    " >>$out
  37. date >>$out
  38.  
  39. cd doit:tex
  40. cp SCOPTIONS-00 SCOPTIONS
  41. cp config.h-norm config.h
  42. cd doit:amiga
  43. delete #?.o
  44. cd doit:common
  45. delete #?.o
  46. cp SCOPTIONS-00 SCOPTIONS
  47. smake
  48. cd doit:tex
  49. delete #?.o
  50. smake -f Smakefile-norm-00
  51. rename initex virtex norm-00
  52.  
  53.  
  54.  
  55. echo NOLINE "Starte big-00 opt     " >>$out
  56. date >>$out
  57.  
  58. cd doit:tex
  59. cp SCOPTIONS-00 SCOPTIONS
  60. cp config.h-big config.h
  61. cd doit:amiga
  62. delete #?.o
  63. cd doit:common
  64. delete #?.o
  65. cp SCOPTIONS-00 SCOPTIONS
  66. smake
  67. cd doit:tex
  68. delete #?.o
  69. smake -f Smakefile-big-00
  70. rename initex virtex big-00
  71.  
  72.  
  73. echo NOLINE "Starte norm-20 no-opt " >>$out
  74. date >>$out
  75.  
  76. cd doit:tex
  77. cp SCOPTIONS-noop-20 SCOPTIONS
  78. cp config.h-norm config.h
  79. cd doit:amiga
  80. delete #?.o
  81. cd doit:common
  82. delete #?.o
  83. cp SCOPTIONS-20 SCOPTIONS
  84. smake
  85. cd doit:tex
  86. delete #?.o
  87. smake -f Smakefile-norm-20
  88. rename initex virtex norm-noop-20
  89.  
  90.  
  91. echo NOLINE "Starte norm-20 opt    " >>$out
  92. date >>$out
  93.  
  94. cd doit:tex
  95. cp SCOPTIONS-20 SCOPTIONS
  96. cp config.h-norm config.h
  97. cd doit:amiga
  98. delete #?.o
  99. cd doit:common
  100. delete #?.o
  101. cp SCOPTIONS-20 SCOPTIONS
  102. smake
  103. cd doit:tex
  104. delete #?.o
  105. smake -f Smakefile-norm-20
  106. rename initex virtex norm-20
  107.  
  108.  
  109. echo NOLINE "Starte big-20 opt     " >>$out
  110. date >>$out
  111.  
  112. cd doit:tex
  113. cp SCOPTIONS-20 SCOPTIONS
  114. cp config.h-big config.h
  115. cd doit:amiga
  116. delete #?.o
  117. cd doit:common
  118. delete #?.o
  119. cp SCOPTIONS-20 SCOPTIONS
  120. smake
  121. cd doit:tex
  122. delete #?.o
  123. smake -f Smakefile-big-20
  124. rename initex virtex big-20
  125.  
  126. echo NOLINE "fertig          " >>$out
  127. date >>$out
  128.  
  129.