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

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