mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 09:24:47 +00:00
cbbb24cfe1
To speedup the depends cached builds, remove some some clutter from the package files. This mainly incldues removing all the shared libraries and .la linker files. It also gives stronger guarantees that monero only links the static libs without any external rvalues.
27 lines
587 B
Makefile
27 lines
587 B
Makefile
packages:=boost openssl zeromq cppzmq expat ldns readline libiconv hidapi protobuf libusb
|
|
native_packages := native_ccache native_protobuf
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias
|
|
darwin_packages = sodium-darwin
|
|
|
|
linux_packages = eudev
|
|
qt_packages = qt
|
|
|
|
ifeq ($(build_tests),ON)
|
|
packages += gtest
|
|
endif
|
|
|
|
ifeq ($(host_os),linux)
|
|
packages += unwind
|
|
packages += sodium
|
|
endif
|
|
|
|
ifeq ($(host_os),mingw32)
|
|
packages += icu4c
|
|
packages += sodium
|
|
endif
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_cdrkit native_libdmg-hfsplus
|
|
endif
|
|
|