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

  1. #
  2. # Makefile
  3. #
  4.  
  5. _DXDIR=..
  6. all: DisplayCardInfo Sample1 Sample2
  7.  
  8. DisplayCardInfo::
  9.     -@cd $*
  10.     -@nmake -nologo all
  11.     -@cd ..
  12.  
  13. Sample1::
  14.     -@cd $*
  15.     -@nmake -nologo all
  16.     -@cd ..
  17.  
  18. Sample2::
  19.     -@cd $*
  20.     -@nmake -nologo all
  21.     -@cd ..
  22.  
  23.  
  24. clean::
  25.     -@cd DisplayCardInfo
  26.     -@nmake -nologo clean
  27.     -@cd ..\Sample1
  28.     -@nmake -nologo clean
  29.     -@cd ..\Sample2
  30.     -@nmake -nologo clean
  31.     -@cd ..
  32.  
  33.