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

  1. !IFNDEF NETSAMPLEPATH
  2. !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
  3. !ENDIF
  4.  
  5. !include $(NETSAMPLEPATH)\QuickStart\master.mak
  6.  
  7.  
  8. #--------------------------------------------------
  9. TARGETS = Market.dll
  10. CLEANUP = $(_OUTDIR)\Market.dll $(_OUTDIR)\Market.pdb
  11. #--------------------------------------------------
  12. _IMPORTS=/r:System.Web.dll /r:System.Data.dll /r:System.dll /r:System.Xml.dll
  13. _OUTDIR=Bin
  14.  
  15. #--------------------------------------------------
  16. all : $(TARGETS)
  17.   rem Sample $(MAKEDIR)
  18.   
  19. clean :
  20.   for %i in ( $(CLEANUP) ) do if exist %i del %i
  21. #--------------------------------------------------
  22.