home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_702________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-27  |  406 b   |  12 lines

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