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

  1. #
  2. # Sample2 makefile
  3. #
  4.  
  5. _DXDIR=..\..
  6.  
  7. all: CS VB
  8.  
  9. CS::
  10.     -@cd $*
  11.     -@nmake -nologo all
  12.     -@cd ..
  13.  
  14. VB::
  15.     -@cd $*
  16.     -@nmake -nologo all
  17.     -@cd ..
  18.  
  19.  
  20. clean:
  21.     -@cd CS
  22.     -@nmake -nologo clean
  23.     -@cd ..\VB
  24.     -@nmake -nologo clean
  25.     -@cd ..
  26.