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

  1. all: IPFilterSink.dll common.dll server.exe client.exe
  2.  
  3. IPFilterSink.dll: IPFilterSink.cs
  4.   csc /debug+ /t:library /r:System.dll /r:System.Runtime.Remoting.dll IPFilterSink.cs
  5.  
  6. common.dll: common.cs
  7.   csc /debug+ /t:library /r:System.Runtime.Remoting.dll common.cs
  8.  
  9. server.exe: server.cs IPFilterSink.dll 
  10.   csc /debug+ /r:IPFilterSink.dll /r:System.dll /r:System.Runtime.Remoting.dll server.cs
  11.  
  12. client.exe: client.cs common.dll 
  13.   csc /debug+ /r:common.dll /r:System.Runtime.Remoting.dll client.cs
  14.  
  15.