mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
118db4f357
Depends still contained some leftovers, like the `wallet` target that included bdb from bitcoin. This commit removes these unneeded targets, the miniupnpc package and the berkeley db package. Reflect the changes in the README as well.
23 lines
539 B
Makefile
23 lines
539 B
Makefile
packages:=boost openssl libevent zeromq cppzmq zlib expat ldns cppzmq readline libiconv qt hidapi
|
|
native_packages := native_ccache
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias
|
|
darwin_packages = sodium-darwin
|
|
|
|
linux_packages = eudev libusb
|
|
|
|
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
|
|
packages += readline
|
|
endif
|
|
|