Makefile.in: Distribute ICU dlls (32 bit).

CW-Bug-Id: #24402
This commit is contained in:
Paul Gofman 2024-11-18 15:52:16 -06:00 committed by Arkadiusz Hiler
parent 4ea1be2c7e
commit b1a751ceb9
2 changed files with 17 additions and 8 deletions

View File

@ -1007,17 +1007,26 @@ all-dist: $(DIST_XALIA)
##
ICU_VER := 6.8.2
DIST_ICU_DIR := $(DST_DIR)/lib64/icu
DIST_ICU := $(OBJ)/.icu-dist
ICU_TARBALL := icu-$(ICU_VER)-x86_64.tar.xz
DIST_ICU64_DIR := $(DST_DIR)/lib64/icu
DIST_ICU64 := $(OBJ)/.icu-dist64
ICU64_TARBALL := icu-$(ICU_VER)-x86_64.tar.xz
DIST_ICU32_DIR := $(DST_DIR)/lib/icu
DIST_ICU32 := $(OBJ)/.icu-dist32
ICU32_TARBALL := icu-$(ICU_VER)-x86.tar.xz
$(DIST_ICU): $(SRC)/icu/$(ICU_TARBALL)
mkdir -p $(DIST_ICU_DIR)
rm -rf $(DIST_ICU_DIR)/*.dll
tar --no-same-owner -xf $< -C $(DIST_ICU_DIR)
$(DIST_ICU64): $(SRC)/icu/$(ICU64_TARBALL)
mkdir -p $(DIST_ICU64_DIR)
rm -rf $(DIST_ICU64_DIR)/*.dll
tar --no-same-owner -xf $< -C $(DIST_ICU64_DIR)
touch $@
all-dist: $(DIST_ICU)
$(DIST_ICU32): $(SRC)/icu/$(ICU32_TARBALL)
mkdir -p $(DIST_ICU32_DIR)
rm -rf $(DIST_ICU32_DIR)/*.dll
tar --no-same-owner -xf $< -C $(DIST_ICU32_DIR)
touch $@
all-dist: $(DIST_ICU64) $(DIST_ICU32)
##

BIN
icu/icu-6.8.2-x86.tar.xz Normal file

Binary file not shown.