home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / fakesrc.zip / PART6 / MAKEFILE < prev    next >
Text File  |  1993-11-19  |  282b  |  20 lines

  1. # Makefile for LAND.EXE
  2.  
  3. !ifndef ASM
  4. ASM=tasm.exe
  5. LINK=tlink.exe
  6. !endif
  7.  
  8. land.exe : land.obj plasma.obj
  9.     $(LINK) land.obj plasma.obj
  10.  
  11. land.obj : land.asm
  12.  
  13. plasma.obj : plasma.asm
  14.  
  15. .asm.obj :
  16.     $(ASM) -t -m -q $<
  17.  
  18. clear :
  19.     del land.obj plasma.obj land.map land.exe
  20.