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

  1. #
  2. # Makefile 
  3. #
  4.  
  5. !IFDEF DEBUG
  6. _CS_DBG_FLAGS=/debug+
  7. !ENDIF
  8. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS) /t:winexe
  9. _IMPORTS=/r:System.Windows.Forms.DLL /r:System.Drawing.dll /r:System.dll
  10.  
  11.  
  12. all: InboxViewer.exe
  13.  
  14. clean:
  15.     -@erase InboxViewer.exe
  16.     -@erase InboxViewer.pdb
  17.  
  18. InboxViewer.exe: *.cs
  19.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) InboxViewerForm.cs MessageForm.cs CDO.cs 
  20.