modify Borland makefile to include bc in library names

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21204 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2003-06-17 13:22:34 +00:00
parent d9a41dfe5a
commit 7a9f270ffc
4 changed files with 10 additions and 10 deletions

View File

@@ -23,19 +23,19 @@ EXEDIR = BORL
!if "$(wxUSE_GUI)" == "0"
IMGLIBS=
!else
IMGLIBS= png_$(DEBUG_SUFFIX) jpeg_$(DEBUG_SUFFIX) tiff_$(DEBUG_SUFFIX)
IMGLIBS= png_bc$(DEBUG_SUFFIX) jpeg_bc$(DEBUG_SUFFIX) tiff_bc$(DEBUG_SUFFIX)
!endif
!if "$(FINAL)" == "0"
EX_LIBS=$(EXTRALIBS:.lib=_d.lib)
EX_LIBS=$(EXTRALIBS:.lib=_bcd.lib)
!else
EX_LIBS=$(EXTRALIBS)
EX_LIBS=$(EXTRALIBS:.lib=_bc.lib)
!endif
!if "$(WXUSINGDLL)" == "1"
LIBS=$(WXLIB) $(EX_LIBS) cw32mti import32 ole2w32 regex_$(DEBUG_SUFFIX) zlib_$(DEBUG_SUFFIX) $(IMGLIBS)
LIBS=$(WXLIB) $(EX_LIBS) cw32mti import32 ole2w32 regex_bc$(DEBUG_SUFFIX) zlib_bc$(DEBUG_SUFFIX) $(IMGLIBS)
!else
LIBS=$(WXLIB) $(EX_LIBS) cw32mt import32 ole2w32 regex_$(DEBUG_SUFFIX) zlib_$(DEBUG_SUFFIX) $(IMGLIBS)
LIBS=$(WXLIB) $(EX_LIBS) cw32mt import32 ole2w32 regex_bc$(DEBUG_SUFFIX) zlib_bc$(DEBUG_SUFFIX) $(IMGLIBS)
!endif
!if "$(wxUSE_ODBC)" == "1"