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

  1. #
  2. # PlayStyles 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.Drawing.dll /r:System.Windows.Forms.dll /r:System.dll /r:DxVBLib.dll
  11.  
  12. all: DxVBLib.DLL PlayStyles.exe
  13.  
  14. !include $(_DXDIR)\DxVBLib.mak
  15.  
  16. PlayStyles.exe:
  17.     csc $(_CS_EXE_FLAGS) /out:$@ $(_IMPORTS) $*.cs
  18.  
  19. clean:
  20.     -@if exist DxVBLib.DLL erase DxVBLib.DLL
  21.     -@if exist PlayStyles.exe erase PlayStyles.exe
  22.     -@if exist PlayStyles.pdb erase PlayStyles.pdb
  23.