home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / QuickStart / howto / samples / Xml / master.mak < prev    next >
Encoding:
Text File  |  2000-06-05  |  604 b   |  18 lines

  1. #tell nmake where to find the master rules for building COM+ applications
  2. #assumes file is \com20sdk\QuickStart\master.mak
  3. !include ..\..\..\..\master.mak
  4.  
  5. #Used as a local variable to use the local C# compiler so that "set CUST_CS=csc" will do local build
  6. !IFDEF CUST_CS
  7. _CS=$(CUST_CS)
  8. !ENDIF
  9.  
  10. #since we want the compiler to import from some dll's, let's specify it here and the XML one
  11. _CS_XML_IMPORTS=/R:System.dll /R:System.Data.dll /R:System.XML.dll
  12.  
  13. # Bin dir is ... undefined
  14. #_OUTDIR=$(CORSDK)\QuickStart\Bin ...undefined
  15. #_CS_OUTDIR=$(CORSDK)\QuickStart\Bin\Cs .... undefined
  16.  
  17.  
  18.