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

  1. !IFNDEF NETSAMPLEPATH
  2. !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
  3. !ENDIF
  4.  
  5. #------------------------------------------------------------------
  6. #The master rules for building .NET QuickStart Sample applications
  7. # NETSAMPLEPATH Env Variable must be defined
  8.  
  9. !include $(NETSAMPLEPATH)\QuickStart\master.mak
  10.  
  11.  
  12. #------------------------------------------------------------------
  13. SUB_DIRS = QSTools TocSwitch
  14.  
  15. all :
  16.   rem Sample $(MAKEDIR)
  17.   copy UrlMaker.ascx ..\aspplus\util
  18.   copy UrlMaker.ascx ..\winforms\util
  19.   copy UrlMaker.ascx ..\howto\util
  20.  
  21.   copy srcref.ascx ..\aspplus\util
  22.   copy srcref.ascx ..\winforms\util
  23.   copy srcref.ascx ..\howto\util
  24.   for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i all
  25.  
  26. clean :
  27.   if exist ..\aspplus\util\UrlMaker.ascx del ..\aspplus\util\UrlMaker.ascx
  28.   if exist ..\winforms\util\UrlMaker.ascx del ..\winforms\util\UrlMaker.ascx
  29.   if exist ..\howto\util\UrlMaker.ascx del ..\howto\util\UrlMaker.ascx
  30.  
  31.   if exist ..\aspplus\util\SrcRef.ascx del ..\aspplus\util\SrcRef.ascx
  32.   if exist ..\winforms\util\SrcRef.ascx del ..\winforms\util\SrcRef.ascx
  33.   if exist ..\howto\util\SrcRef.ascx del ..\howto\util\SrcRef.ascx
  34.   for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i clean
  35.