home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_652________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-27  |  290 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)
  9.  
  10.  
  11. all: comreg.exe
  12.  
  13. comreg.exe: comreg.cs programbase.cs fusioninstall.cs assemblyinfo.cs
  14.     csc.exe  $(_CS_EXE_FLAGS) /out:$@ $**
  15.  
  16.  
  17. clean:
  18.     -@if exist comreg.exe erase comreg.exe
  19.  
  20.