home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / sprint / spfonts4.zip / SPFONT.MAK < prev    next >
Text File  |  1989-06-24  |  927b  |  46 lines

  1. # SPFONT makefile
  2. #
  3.  
  4. !if !$d(VIDEOCGA) && !$d(VIDEOHERC)
  5. VIDEOHERC = x
  6. !endif
  7.  
  8. !if $d(VIDEOCGA)
  9.  
  10. spfont : spfont16.com spfont25.com
  11.  
  12. spfont16.com : spfont16.obj spfont12.fnt
  13.     tlink /t spfont16;
  14.     spfontld spfont16.com spfont12.fnt
  15.  
  16. spfont16.obj : spfont.asm
  17.     tasm /ml/dCGA/dCHARHEIGHT=12 spfont,spfont16
  18.  
  19. spfont25.com : spfont25.obj spfont8.fnt
  20.     tlink /t spfont25;
  21.     spfontld spfont25.com spfont8.fnt
  22.  
  23. spfont25.obj : spfont.asm
  24.     tasm /ml/dCGA/dCHARHEIGHT=8 spfont,spfont25
  25.  
  26. !endif
  27. !if $d(VIDEOHERC)
  28.  
  29. spfont : spfont29.com spfont43.com
  30.  
  31. spfont29.com : spfont29.obj spfont12.fnt
  32.     tlink /t spfont29;
  33.     spfontld spfont29.com spfont12.fnt
  34.  
  35. spfont29.obj : spfont.asm
  36.     tasm /ml/dHERC/dCHARHEIGHT=12 spfont,spfont29
  37.  
  38. spfont43.com : spfont43.obj spfont8.fnt
  39.     tlink /t spfont43;
  40.     spfontld spfont43.com spfont8.fnt
  41.  
  42. spfont43.obj : spfont.asm
  43.     tasm /ml/dHERC/dCHARHEIGHT=8 spfont,spfont43
  44.  
  45. !endif
  46.