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

  1. #
  2. # Makefile
  3. #
  4.  
  5. !IFDEF DEBUG
  6. _CS_DBG_FLAGS=/debug+
  7. !ENDIF
  8. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS)
  9.  
  10. all: shellcmd.exe
  11.  
  12. shellcmd.exe: shellcmd.cs shellextlib.cs
  13.     csc.exe $(_CS_EXE_FLAGS) /out:$@ $**
  14.  
  15. clean:
  16.     -@if exist shellcmd.exe erase shellcmd.exe
  17.     -@if exist shellcmd.pdb erase shellcmd.pdb
  18.  
  19.