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

  1.  
  2. SDK_LIB_PATH=$(SDK_LIB_PATH:*=i386)
  3.  
  4.  
  5. _CSC=csc.exe
  6. _REGASM = $(_BIN)\regasm.exe
  7.  
  8. all:SampleMMC.dll      
  9.  
  10.  
  11. SampleMMC.dll: CAbout.cs CComponent.cs CData.cs CDO.cs CNode.cs mmcinterfaces.cs mmcenumsandstructs.cs mmcSpecificConstsAndInterfaces.cs CTeamPropPage.cs CDivisionResults.cs
  12.     $(_CSC) /out:SampleMMC.dll /unsafe /t:library $** /win32res:samplemmc.res /r:System.dll /r:System.WinForms.DLL  /r:Microsoft.Win32.Interop.DLL /r:System.Drawing.DLL 
  13.  
  14. reg: 
  15.     regasm samplemmc.dll
  16.     mmcreg.reg
  17.  
  18.  
  19.