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

  1. #
  2. # Sample1 C# makefile
  3. #
  4.  
  5. _DXDIR=..\..\..
  6. !IFDEF DEBUG
  7. _CS_DBG_FLAGS=/debug+
  8. !ENDIF
  9. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS) /t:winexe
  10. _IMPORTS=/r:System.DLL /r:System.Windows.Forms.DLL /r:System.Drawing.DLL /r:DxVBLib.DLL
  11.  
  12. all: DxVBLib.DLL Sample1Form.exe
  13.  
  14. !include $(_DXDIR)\DxVBLib.mak
  15.  
  16. Sample1Form.exe:
  17.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) $*.cs
  18.  
  19. clean:
  20.     -@if exist DxVBLib.DLL erase DxVBLib.DLL
  21.     -@if exist Sample1Form.exe erase Sample1Form.exe
  22.     -@if exist Sample1Form.pdb erase Sample1Form.pdb
  23.