home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / fakesrc / part1 / makefile < prev   
Makefile  |  1993-11-18  |  222b  |  16 lines

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