This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/zlib/host.bash

21 lines
210 B
Bash

source "$pkg_common"
configure()
{
make distclean
./configure \
--shared \
--prefix="$cfg_dir_toolchain"
}
build()
{
$cmd_make -j1
}
host_install()
{
$cmd_make -j1 install
}