home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Party 1994: Try This At Home
/
disk_image.bin
/
source
/
fakesrc
/
part9
/
makefile
next >
Wrap
Makefile
|
1993-11-03
|
651b
|
30 lines
# Makefile for TXTFX.EXE CHV 11/03/93.
!ifndef ASM
ASM=tasm.exe
LINK=tlink.exe
BINOBJ=binobj.exe
RAW=raw.exe
!endif
txtfx.exe : txtfx.obj txtpic.obj txtpal.obj
$(LINK) txtfx txtpic txtpal
txtfx.obj : txtfx.asm sincos.inc
$(ASM) -t -m -q txtfx
txtpic.obj : txtbmp.raw
@echo **WARNING** use the PARA aligned BINOBJ program!
$(BINOBJ) txtbmp.raw txtpic.obj PicRaw
txtpal.obj : txtbmp.pal
$(BINOBJ) txtbmp.pal txtpal.obj PicPal
# here txtbmp.raw and txtbmp.pal are created.
txtbmp.raw : txtbmp.pcx
$(RAW) txtbmp.pcx
clear :
del txtfx.obj txtfx.map txtpic.obj txtpal.obj txtbmp.raw txtbmp.pal txtfx.exe