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

  1. #
  2. # ActiveDS 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 /r:ActiveDIS.dll
  10.  
  11. all: ActiveDIS.dll adsComputer.exe
  12.  
  13. ActiveDIS.dll:
  14.     tlbimp /silent activeds.tlb /out:$@
  15.  
  16. adsComputer.exe:
  17.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) .\Form\*.cs
  18.     -@copy .\ico\*.ico .
  19.  
  20. clean:
  21.     -@if exist *.dll erase *.dll
  22.     -@if exist adsComputer.exe erase adsComputer.exe
  23.     -@if exist adsComputer.pdb erase adsComputer.pdb
  24.     -@if exist *.ico erase *.ico
  25.