home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Party 1994: Try This At Home
/
disk_image.bin
/
source
/
fakesrc
/
part8
/
makefile
< prev
next >
Wrap
Makefile
|
1993-11-18
|
470b
|
27 lines
# Makefile for WORM.EXE
!ifndef ASM
ASM=tasm.exe
LINK=tlink.exe
BINOBJ=binobj.exe
BPC=bpc.exe
!endif
worm.exe : worm.obj wormraw.obj
$(LINK) worm.obj wormraw.obj
worm.obj : worm.asm
$(ASM) -t -m -q worm.asm
wormraw.obj : worm.raw
$(BINOBJ) worm.raw wormraw.obj WormPic
worm.raw : genworm.exe
genworm.exe
genworm.exe : genworm.pas
$(BPC) genworm.pas
clear :
del genworm.exe worm.raw worm.pal wormraw.obj worm.obj worm.map worm.exe