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

  1. #
  2. # LoanApps makefile
  3. #
  4.  
  5. all: ConLoan LoanWebService WebLoan WinLoan
  6.  
  7. ConLoan::
  8.     cd $*
  9.     - nmake all
  10.     cd ..
  11.     
  12. LoanWebService::
  13.     cd $*
  14.     - nmake all
  15.     cd ..    
  16.     
  17. WebLoan::
  18.     cd $*
  19.     - nmake all
  20.     cd ..    
  21.     
  22. WinLoan::
  23.     cd $*
  24.     - nmake all
  25.     cd ..            
  26.  
  27. clean:
  28.     cd ConLoan
  29.     - nmake clean
  30.     cd ..
  31.  
  32.     cd LoanWebService
  33.     - nmake clean
  34.     cd ..
  35.     
  36.     cd WebLoan
  37.     - nmake clean
  38.     cd ..
  39.     
  40.     cd WinLoan
  41.     - nmake clean
  42.     cd ..