home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / fakesrc / part9 / makefile next >
Makefile  |  1993-11-03  |  651b  |  30 lines

  1. # Makefile for TXTFX.EXE   CHV 11/03/93.
  2.  
  3. !ifndef ASM
  4. ASM=tasm.exe
  5. LINK=tlink.exe
  6. BINOBJ=binobj.exe
  7. RAW=raw.exe
  8. !endif
  9.  
  10. txtfx.exe : txtfx.obj txtpic.obj txtpal.obj
  11.     $(LINK) txtfx txtpic txtpal
  12.  
  13. txtfx.obj : txtfx.asm sincos.inc
  14.     $(ASM) -t -m -q txtfx
  15.  
  16. txtpic.obj : txtbmp.raw
  17.         @echo **WARNING** use the PARA aligned BINOBJ program!
  18.     $(BINOBJ) txtbmp.raw txtpic.obj PicRaw
  19.  
  20. txtpal.obj : txtbmp.pal
  21.     $(BINOBJ) txtbmp.pal txtpal.obj PicPal
  22.  
  23. # here txtbmp.raw and txtbmp.pal are created.
  24.  
  25. txtbmp.raw : txtbmp.pcx
  26.     $(RAW) txtbmp.pcx
  27.  
  28. clear :
  29.     del txtfx.obj txtfx.map txtpic.obj txtpal.obj txtbmp.raw txtbmp.pal txtfx.exe
  30.