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

  1. ALL:    FooAssembly.dll     \
  2.         MyHost.exe       \
  3.         FooClient.exe
  4.  
  5. FooAssembly.dll: FooAssembly.cs
  6.         csc /debug /r:System.Runtime.Remoting.dll /t:library /out:FooAssembly.dll FooAssembly.cs
  7.  
  8. MyHost.exe: MyHost.cs
  9.         csc  /debug /r:System.Runtime.Remoting.dll MyHost.cs
  10.  
  11. FooClient.exe: FooClient.cs FooAssembly.dll
  12.         csc /debug /r:System.Runtime.Remoting.dll /r:FooAssembly.dll FooClient.cs 
  13.