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

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