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

  1. #
  2. # Makefile 
  3. #
  4.  
  5. !IFDEF DEBUG
  6. _CS_DBG_FLAGS=/debug+
  7. !ENDIF
  8. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS)
  9. _IMPORTS=/r:SHDocVw.dll
  10.  
  11. all: Shdocvw.dll Explorer.exe
  12.  
  13. Shdocvw.dll:
  14.     tlbimp shdocvw.dll
  15.  
  16. Explorer.exe: 
  17.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) $*.cs
  18.  
  19.  
  20. clean:
  21.     -@if exist SHDocVw.dll erase SHDocVw.dll
  22.     -@if exist Explorer.exe erase Explorer.exe
  23.     -@if exist Explorer.pdb erase Explorer.pdb
  24.