home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / credits / makefile < prev    next >
Makefile  |  1994-12-25  |  129b  |  8 lines

  1. AS    = tasm /m9 /zi
  2. LD    = tlink /v
  3.  
  4. credits.exe: credits.obj
  5.     $(LD) credits
  6. credits.obj: credits.asm font.inc
  7.     $(AS) credits
  8.