home *** CD-ROM | disk | FTP | other *** search
/ CICA 1992 November / CICA_MS_Windows_CD-ROM_Walnut_Creek_November_1992.iso / win3 / programr / vwfd / makefile next >
Makefile  |  1992-07-22  |  672b  |  31 lines

  1. # sample make file for building vwfd virtual device for Microsoft Windows
  2.  
  3. # comment this definition out with a "#", if building a non-debugging version
  4. Debug=-DDEBUG
  5.  
  6. all : vwfd.386 tstwf.exe
  7.  
  8. .asm.obj:
  9.         masm5 -p -w2 -Mx $(Debug) -I..\include $*;
  10.  
  11. .asm.lst:
  12.         masm5 -l -p -w2 -Mx $(Debug) -I..\include $*;
  13.  
  14.  
  15. tstwf.obj: tstwf.asm vwfd.inc
  16.  
  17. tstwf.exe: tstwf.obj
  18.   link tstwf.obj;
  19.  
  20.  
  21. vwfd.obj : vwfd.asm ..\include\vdd.inc   \
  22.                       ..\include\debug.inc \
  23.                       ..\include\vmm.inc
  24.  
  25. OBJS =  vwfd.obj 
  26.  
  27. vwfd.386: vwfd.def $(OBJS)
  28.         link386 @vwfd.lnk
  29.         addhdr vwfd.386
  30.         mapsym32 vwfd
  31.