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

  1. !include ..\..\master.mak
  2.  
  3. all: MyObjectApp.exe
  4.  
  5. MyObjectLibrary.dll : 
  6.   cd ..\ObjectZone
  7.   nmake
  8.   cd..\MyObject
  9.   copy ..\ObjectZone\MyObjectLibrary.dll
  10.   copy ..\ObjectZone\MyObjectLibrary.dll bin
  11.  
  12. MyObjectApp.exe: MyObjectLibrary.dll MyObjectApp.cs
  13.   $(_CS) $(_CS_EXE_FLAGS) -r:MyObjectLibrary.dll -out:MyObjectApp.exe MyObjectApp.cs
  14.