home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_324________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-18  |  742 b   |  23 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 = DirectoryServices EventLog FileSystemWatcher Installers \
  14.   MessageQueue PerformanceCounters Process ServiceApplication \
  15.   Timers Tracing
  16.  
  17. all :
  18.   rem Sample $(MAKEDIR)
  19.   for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i all
  20.  
  21. clean : 
  22.   for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i clean
  23.