mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
6303fbcacc
As much as possible.
24 lines
483 B
Plaintext
24 lines
483 B
Plaintext
CONFIG_ZLIB ?= y
|
|
modules-$(CONFIG_ZLIB) += zlib
|
|
|
|
zlib_version := 1.2.11
|
|
zlib_dir := zlib-$(zlib_version)
|
|
zlib_tar := zlib-$(zlib_version).tar.gz
|
|
zlib_url := https://www.zlib.net/$(zlib_tar)
|
|
zlib_hash := c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
|
|
|
|
zlib_configure := \
|
|
$(CROSS_TOOLS) \
|
|
./configure \
|
|
--prefix="/" \
|
|
|
|
zlib_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
install \
|
|
|
|
zlib_libraries := libz.so.1
|
|
|
|
zlib_depends := $(musl_dep)
|