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

  1. #
  2. # Sample1 VB makefile
  3. #
  4.  
  5. _DXDIR=..\..\..
  6. !IFDEF DEBUG
  7. _VB_DBG_FLAGS=/debug+
  8. !ENDIF
  9.  
  10. _VB_OPTION_FLAGS=/optionstrict- /t:winexe
  11. _VB_EXE_FLAGS=/t:exe $(_VB_DBG_FLAGS) $(_VB_OPTION_FLAGS)
  12. _IMPORTS=/r:System.DLL /r:System.Windows.Forms.DLL /r:System.Drawing.dll /r:DxVBLib.dll
  13.  
  14.  
  15. all: DxVBLib.DLL Sample1Form.exe
  16.  
  17. !include $(_DXDIR)\DxVBLib.mak
  18.  
  19. Sample1Form.exe:
  20.     vbc $(_VB_EXE_FLAGS) $(_IMPORTS) /out:$@ $*.vb
  21.  
  22. clean:
  23.     -@if exist DxVBLib.DLL erase DxVBLib.DLL
  24.     -@if exist Sample1Form.exe erase Sample1Form.exe
  25.     -@if exist Sample1Form.pdb erase Sample1Form.pdb
  26.  
  27.