home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_654________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-27  |  304 b   |  18 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: tlbgen.exe
  12.  
  13. tlbgen.exe: tlbgen.cs programbase.cs tlbexp.cs assemblyinfo.cs strongname.cs resource.cs
  14.     csc.exe $(_CS_EXE_FLAGS) /out:$@ $**
  15.  
  16. clean:
  17.     -@if exist tlbgen.exe erase tlbgen.exe
  18.