mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-3389 CygWin/MSVC changes
X-SVN-Rev: 14868
This commit is contained in:
parent
cce10a70c3
commit
7be56c476d
2 changed files with 4 additions and 3 deletions
|
@ -57,7 +57,7 @@ UCONVMSG_LIB=dummy
|
|||
## Static mode
|
||||
ifeq ($(UCONVMSG_MODE),static)
|
||||
DEFS += -DUCONVMSG_LINK=$(MSGNAME)
|
||||
UCONVMSG_LIB = $(RESDIR)/lib$(MSGNAME).$(A)
|
||||
UCONVMSG_LIB = $(RESDIR)/$(LIBPREFIX)$(MSGNAME).$(A)
|
||||
LIBS += $(UCONVMSG_LIB)
|
||||
PKGMODE=static
|
||||
INSTALLTO=$(libdir)
|
||||
|
|
|
@ -150,11 +150,12 @@ MIDDLE_SO_TARGET = $(SO_TARGET).$(SO_TARGET_VERSION_MAJOR)
|
|||
## How ICU libraries are named... ex. $(LIBICU)uc$(SO)
|
||||
# Prefix for the ICU library names
|
||||
ICUPREFIX = icu
|
||||
LIBICU = lib$(ICUPREFIX)
|
||||
LIBPREFIX = lib
|
||||
LIBICU = $(LIBPREFIX)$(ICUPREFIX)
|
||||
|
||||
# Static library prefix and file extension
|
||||
STATIC_PREFIX = s
|
||||
LIBSICU = lib$(STATIC_PREFIX)$(ICUPREFIX)
|
||||
LIBSICU = $(LIBPREFIX)$(STATIC_PREFIX)$(ICUPREFIX)
|
||||
A = a
|
||||
|
||||
# Force removal [for make clean]
|
||||
|
|
Loading…
Add table
Reference in a new issue