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

  1. #
  2. # WMI sample makefile
  3. #
  4.  
  5. !IFDEF DEBUG
  6. _CS_DBG_FLAGS=/debug+
  7. !ENDIF
  8. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS)
  9. _IMPORTS=/r:System.Drawing.dll /r:System.dll /r:System.Windows.Forms.dll
  10.  
  11. all: PSView.exe
  12.     -@copy .\ico\*.ico
  13.  
  14. PSView.exe: WBEMSCRIPTING.dll
  15.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) /r:WBEMSCRIPTING.dll .\Form\*.cs
  16.  
  17. WBEMSCRIPTING.dll:
  18.     tlbimp wbemdisp.tlb /out:$@
  19.  
  20. clean:
  21.     -@if exist *.ico erase *.ico
  22.     -@if exist WBEMSCRIPTING.dll erase WBEMSCRIPTING.dll
  23.     -@if exist PSView.exe erase PSView.exe
  24.     -@if exist PSView.pdb erase PSView.pdb
  25.