home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / Remoting / MyCOM / makefile < prev    next >
Encoding:
Makefile  |  2000-06-23  |  292 b   |  16 lines

  1. !include ..\..\master.mak
  2.  
  3. all: MyCOMRate.exe
  4.  
  5. RateSvr.dll:
  6.   cd ..\COMZone
  7.   nmake
  8.   cd..\MyCOM
  9.   copy ..\COMZone\RateSvr.dll
  10.   copy ..\COMZone\RateSvr.dll bin
  11.  
  12. MyCOMRate.exe: RateSvr.dll MyCOMRate.cs
  13.   $(_CS) $(_CS_EXE_FLAGS) /r:RateSvr.dll -out:MyCOMRate.exe MyCOMRate.cs
  14.  
  15.  
  16.