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

  1. #
  2. #  Makefile
  3. #
  4.  
  5. _XLDIR=.
  6.  
  7.  
  8. all: $(_XLDIR)\Excel.DLL CS VB VC
  9.  
  10. !include Excel.mak
  11.  
  12. CS::
  13.     cd $*
  14.     - nmake all
  15.     cd ..
  16.  
  17. VB::
  18.     cd $*
  19.     - nmake all
  20.     cd ..
  21.  
  22. VC::
  23.     cd $*
  24.     - nmake all
  25.     cd ..
  26.  
  27. clean: RemoveDLL
  28.     -cd CS
  29.     - nmake clean
  30.     - cd ..
  31.  
  32.     -cd VB
  33.     - nmake clean
  34.     - cd ..
  35.  
  36.     -cd VC
  37.     - nmake clean
  38.     - cd ..
  39.  
  40.