home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
code
/
vwfd
/
makefile
next >
Wrap
Makefile
|
1995-05-18
|
672b
|
31 lines
# sample make file for building vwfd virtual device for Microsoft Windows
# comment this definition out with a "#", if building a non-debugging version
Debug=-DDEBUG
all : vwfd.386 tstwf.exe
.asm.obj:
masm5 -p -w2 -Mx $(Debug) -I..\include $*;
.asm.lst:
masm5 -l -p -w2 -Mx $(Debug) -I..\include $*;
tstwf.obj: tstwf.asm vwfd.inc
tstwf.exe: tstwf.obj
link tstwf.obj;
vwfd.obj : vwfd.asm ..\include\vdd.inc \
..\include\debug.inc \
..\include\vmm.inc
OBJS = vwfd.obj
vwfd.386: vwfd.def $(OBJS)
link386 @vwfd.lnk
addhdr vwfd.386
mapsym32 vwfd