home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n12 / plgnplay.exe / SCHOOL.MAK < prev    next >
Text File  |  1995-12-01  |  1KB  |  57 lines

  1. ###############################################################################
  2. #
  3. #    SCHOOL.MAK -- Make file for School Bus Example
  4. #
  5. #    Use with C9 (32-bit) and MASM 6.11 from DDK
  6. #
  7. ###############################################################################
  8.  
  9. all: school.vxd telepath.vxd
  10.  
  11. .asm.obj:
  12.    ml -coff -DBLD_COFF -DIS_32 -W2 -Zd -c -Cx -DMASM6 -Zi -DDEBUG $*.asm
  13.  
  14. .c.obj:
  15.    cl -c -Gs -Zdpl -Od -D_X86_ -YX -W3 -DDEBLEVEL=1 -DBLD_COFF -DDEBUG -DIS_32 $*.c
  16.  
  17. .rc.res:
  18.    c:\msvc\bin\rc -r $*.rc   # must use RC16 for this
  19.  
  20. school.res telepath.res: version.h $*.rc
  21.  
  22. school.vxd : s_ctl.obj $*.obj $*.def $*.res
  23.    link @<<
  24. -machine:i386 -def:$*.def -out:$@
  25. -debug -debugtype:map
  26. -map:$*.map -vxd vxdwraps.clb -nodefaultlib
  27. s_ctl.obj $*.obj
  28. <<
  29.    c:\winice95\msym $*
  30.    adrc2vxd $*.vxd $*.res
  31.  
  32. telepath.vxd: t_ctl.obj $*.obj $*.def $*.res
  33.    link @<<
  34. -machine:i386 -def:$*.def -out:$@
  35. -debug -debugtype:map
  36. -map:$*.map -vxd vxdwraps.clb -nodefaultlib
  37. t_ctl.obj $*.obj
  38. <<
  39.    c:\winice95\msym $*
  40.    adrc2vxd $*.vxd $*.res
  41.  
  42. clean:
  43.    del s_ctl.obj
  44.    del vc20.pch
  45.    del school.obj
  46.    del school.res
  47.    del school.lib
  48.    del school.exp
  49.    del school.map
  50.    del school.wsp
  51.    del t_ctl.obj
  52.    del telepath.obj
  53.    del telepath.res
  54.    del telepath.lib
  55.    del telepath.exp
  56.    del telepath.map
  57.