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

  1. !include ..\..\master.mak
  2.  
  3. all: HelloService.dll MyHost.exe 
  4.  
  5. HelloService.dll: HelloService.cs
  6.   $(_CS) $(_CS_DLL_FLAGS) -out:HelloService.dll HelloService.cs
  7.   copy HelloService.dll .\bin
  8.   copy HelloService.dll ..\MyHello
  9.   copy HelloService.dll ..\MyHello\bin
  10.  
  11. MyHost.exe: MyHost.cs
  12.  
  13.