home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / teseract / source / make2 < prev    next >
Encoding:
Text File  |  1988-10-02  |  2.3 KB  |  111 lines

  1. #
  2. # Makefile for TesSeRact (Microsoft make)
  3. #
  4. # Invoke as 'MAKE MAKE2'
  5.  
  6. VERSION=1.10
  7.  
  8. ASS=MASM /DMASM /W2
  9.  
  10. AFLAGS=/Ml /DVER='$(VERSION)' /I. /I$(INCLUDE) /V /B63
  11.  
  12. .asm.obj:
  13.     $(ASS) $(MASM) $(AFLAGS) $* $(DB3);
  14.  
  15. all:  tess.lib tess_asm.obj tess_bp.obj tess_end.obj
  16.  
  17. tsint2f.obj:    tsint2f.asm tess.inc
  18.  
  19. tspopup.obj:    tspopup.asm tess.inc
  20.  
  21. tsutil.obj:    tsutil.asm tess.inc
  22.  
  23. tshot.obj:    tshot.asm tess.inc
  24.  
  25. tsint8.obj:    tsint8.asm tess.inc
  26.  
  27. tsint9.obj:    tsint9.asm tess.inc
  28.  
  29. tsint13.obj:    tsint13.asm tess.inc
  30.  
  31. tsint16.obj:    tsint16.asm tess.inc
  32.  
  33. tsint1c.obj:    tsint1c.asm tess.inc
  34.  
  35. tsint21.obj:    tsint21.asm tess.inc
  36.  
  37. tsint24.obj:    tsint24.asm tess.inc
  38.  
  39. tsint28.obj:    tsint28.asm tess.inc
  40.  
  41. tsinit.obj:    tsinit.asm tess.inc
  42.  
  43. tsgetdat.obj:    tsgetdat.asm tess.inc
  44.  
  45. tssethot.obj:    tssethot.asm tess.inc
  46.  
  47. tschkres.obj:    tschkres.asm tess.inc
  48.  
  49. tsenatsr.obj:    tsenatsr.asm tess.inc
  50.  
  51. tsdistsr.obj:    tsdistsr.asm tess.inc
  52.  
  53. tscaltsr.obj:    tscaltsr.asm tess.inc
  54.  
  55. tssetsta.obj:    tssetsta.asm tess.inc
  56.  
  57. tsgetsta.obj:    tsgetsta.asm tess.inc
  58.  
  59. tsreltsr.obj:    tsreltsr.asm tess.inc
  60.  
  61. tsgetpop.obj:    tsgetpop.asm tess.inc
  62.  
  63. tsstack.obj:    tsstack.asm tess.inc
  64.  
  65. tsdobeep.obj:    tsdobeep.asm tess.inc
  66.  
  67. tsrestsr.obj:    tsrestsr.asm tess.inc
  68.  
  69. tschkhot.obj:    tschkhot.asm tess.inc
  70.  
  71. tsgetpar.obj:    tsgetpar.asm tess.inc
  72.  
  73. tsuser24.obj:    tsuser24.asm tess.inc
  74.  
  75. tsstukbd.obj:    tsstukbd.asm tess.inc
  76.  
  77. tstrigpo.obj:    tstrigpo.asm tess.inc
  78.  
  79. tstrigbg.obj:    tstrigbg.asm tess.inc
  80.  
  81. dummy1.obj:    dummy1.asm tess.inc
  82.  
  83. dummy2.obj:    dummy2.asm tess.inc
  84.  
  85. dummy3.obj:    dummy3.asm tess.inc
  86.  
  87. dummy4.obj:    dummy4.asm tess.inc
  88.  
  89. dummy5.obj:    dummy5.asm tess.inc
  90.  
  91. dummy6.obj:    dummy6.asm tess.inc
  92.  
  93. tess.lib:    make2.lb tsint2f.obj tspopup.obj tsutil.obj tshot.obj \
  94.         tsint8.obj tsint9.obj tsint13.obj tsint16.obj tsint1c.obj \
  95.         tsint21.obj tsint24.obj tsint28.obj tsinit.obj tsgetdat.obj \
  96.         tssethot.obj tschkres.obj tsenatsr.obj tsdistsr.obj \
  97.         tscaltsr.obj tssetsta.obj tsgetsta.obj tsreltsr.obj \
  98.         tsgetpop.obj tsstack.obj tsdobeep.obj tsrestsr.obj \
  99.         tschkhot.obj tsgetpar.obj tsuser24.obj tsstukbd.obj \
  100.         tstrigpo.obj tstrigbg.obj dummy1.obj dummy2.obj \
  101.         ummy3.obj dummy4.obj dummy5.obj dummy6.obj
  102.     erase tess.lib
  103.     lib @make2.lb
  104.  
  105. tess_asm.obj:    tess_asm.asm tess.lib
  106.  
  107. tess_bp.obj:    tess_bp.asm tess.lib
  108.  
  109. tess_end.obj:    tess_end.asm tess.lib
  110.  
  111.