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

  1. all : SoapMessageClient.exe PlanetEarth.exe
  2.  
  3. SoapMessageClient.exe : SoapMessageClient.cs
  4.  csc /debug+ SoapMessageClient.cs /r:System.dll /r:System.Runtime.Serialization.Formatters.Soap.dll 
  5.  
  6. PlanetEarth.exe : PlanetEarth.cs
  7.  csc /debug+ PlanetEarth.cs /r:System.dll /r:System.Runtime.Serialization.Formatters.Soap.dll 
  8.  
  9. run:
  10.   SoapMessageClient.exe
  11.   PlanetEarth.exe
  12.