home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / fakesrc / part10 / makefile < prev    next >
Makefile  |  1993-11-19  |  436b  |  26 lines

  1. # Makefile for ZOOM.EXE
  2.  
  3. !ifndef ASM
  4. ASM=tasm
  5. LINK=tlink
  6. BPC=bpc
  7. !endif
  8.  
  9. zoom.exe : zoom.obj mandel.obj
  10.     $(LINK) zoom.obj mandel.obj
  11.  
  12. zoom.obj : zoom.asm zoompath.inc
  13.     $(ASM) -t -m -q zoom.asm
  14.  
  15. mandel.obj : mandel.asm
  16.     $(ASM) -t -m -q mandel.asm
  17.  
  18. zoompath.inc : genpath.exe
  19.     genpath.exe
  20.  
  21. genpath.exe : genpath.pas
  22.     $(BPC) genpath.pas
  23.  
  24. clear :
  25.     del zoom.obj mandel.obj zoom.map zoompath.inc genpath.exe zoom.exe
  26.