home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / FAKEDEMO.ZIP / FAKESRC.ZIP / PART7 / MAKEFILE next >
Text File  |  1993-11-19  |  256b  |  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.