home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / fakesrc / part7 / makefile next >
Encoding:
Makefile  |  1993-11-19  |  256 b   |  16 lines

  1. # Makefile for SHADES.EXE
  2.  
  3. !ifndef ASM
  4. ASM=tasm.exe
  5. LINK=tlink.exe
  6. !endif
  7.  
  8. shades.exe : shades.obj
  9.     $(LINK) shades.obj
  10.  
  11. shades.obj : shades.asm shades.inc sincos.inc
  12.     $(ASM) -t -m -q shades.asm
  13.  
  14. clear :
  15.     del shades.obj shades.map shades.exe
  16.