home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_60________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-18  |  1.1 KB  |  29 lines

  1. !IFNDEF NETSAMPLEPATH
  2. !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
  3. !ENDIF
  4.  
  5. #--------------------------------------------------
  6. #_SDLPATH=http://localhost/quickstart/aspplus/samples/services/intrinsics/cs/sessionservice1.asmx?WSDL
  7. !include $(NETSAMPLEPATH)\QuickStart\master.mak
  8. #--------------------------------------------------
  9. TARGETS = SessionService1.cs \
  10.   $(_OUTDIR)\SessionService1.dll
  11. CLEANUP = SessionService1.cs \
  12.   $(_OUTDIR)\SessionService1.dll \
  13.   $(_OUTDIR)\SessionService1.pdb
  14. #--------------------------------------------------
  15. _IMPORTS=/r:System.dll /r:System.Web.Services.dll /r:System.XML.dll
  16. _OUTDIR=$(NETSAMPLEPATH)\QuickStart\ASPPlus\Bin
  17.  
  18. #--------------------------------------------------
  19. all : $(TARGETS)
  20.   rem Sample $(MAKEDIR)
  21.  
  22. $(_OUTDIR)\SessionService1.dll : SessionService1.cs $(NETSAMPLEPATH)\QuickStart\QSVersion.cs
  23.   if not exist $(_OUTDIR) md $(_OUTDIR)
  24.   $(_CS) $(_CS_DLL_FLAGS) $(_IMPORTS) /out:$@ $** $(_WIN32RES) $(_KEYFILE)
  25.  
  26. clean :
  27.   for %i in ( $(CLEANUP) ) do if exist %i del %i
  28. #--------------------------------------------------
  29.