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

  1. tlbimp ../LoanLib/LoanLib.dll /out:LoanLib.dll
  2. csc ConLoan.cs /r:LoanLib.dll
  3.  
  4. TARGETS = LoanLib.dll ConLoan.exe
  5. CLEANUP = *.dll *.exe *.pdb
  6. #--------------------------------------------------
  7. _IMPORTS = /r:LoanLib.dll
  8.  
  9. #--------------------------------------------------
  10. all : $(TARGETS)
  11.  
  12. clean :
  13.   @if exist *.dll @del *.dll
  14.   @if exist *.exe @del *.exe
  15.   @if exist *.pdb @del *.pdb
  16.   @if exist *.tlb @del *.tlb
  17.  
  18. #--------------------------------------------------
  19.  
  20. !IFDEF DEBUG
  21. _CS_DBG_FLAGS=/debug+
  22. !ENDIF
  23. _CS_EXE_FLAGS=$(_CS_DBG_FLAGS)
  24.  
  25. #--------------------------------------------------
  26. ConLoan.exe : ConLoan.cs
  27.     csc $(_CS_EXE_FLAGS) $(_IMPORTS) $*.cs
  28.  
  29. LoanLib.dll :
  30.     tlbimp ../LoanLib/LoanLib.dll /out:$*.dll