home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / QuickStart / aspplus / samples / classbrowser / makefile < prev    next >
Encoding:
Makefile  |  2000-05-09  |  670 b   |  32 lines

  1. !IFNDEF CORSDK
  2. #assumes that we are in com20sdk\quickstart\aspplus\samples\webforms\intro
  3. CORSDK=..\..\..\..
  4. !ENDIF
  5.  
  6. #tell nmake where to find the master rules for building COM+ applications
  7. #assumes file is \com20sdk\QuickStart\master.mak
  8. !include $(CORSDK)\QuickStart\master.mak
  9.  
  10. #TODO
  11. _CS=csc
  12.  
  13. #Define Imported Libraries
  14. _IMPORTS=/r:System.Web.dll /r:System.Data.dll 
  15.  
  16. # Bin dir is \com20sdk\QuickStart\ASPPlus\Bin
  17. _OUTDIR=$(CORSDK)\QuickStart\ASPPlus\Bin
  18.  
  19. # Define Targets
  20.  
  21. #issuing "nmake all" will build ClassInfo.dll
  22. all: ClassInfo.dll
  23.  
  24. ClassInfo.dll : ClassInfo.cs
  25.     $(_CS) $(_CS_DLL_FLAGS) $(_IMPORTS) /out:$(_OUTDIR)\$@ $**
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.