* fixed 'make depends' building * fixed capture vars for MacOS * fixed Linux build for make depends --------- Co-authored-by: Some Random Crypto Guy <somerandomcryptoguy@protonmail.com>
35 lines
661 B
Makefile
35 lines
661 B
Makefile
native_packages := native_protobuf
|
|
packages := boost openssl zeromq unbound sodium protobuf
|
|
|
|
ifneq ($(host_os),android)
|
|
packages += libusb
|
|
endif
|
|
|
|
ifneq ($(host_os),freebsd)
|
|
ifneq ($(host_os),android)
|
|
packages += hidapi
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(host_os),mingw32)
|
|
packages += ncurses readline
|
|
endif
|
|
|
|
mingw32_native_packages :=
|
|
mingw32_packages = icu4c libiconv
|
|
|
|
linux_native_packages :=
|
|
linux_packages := eudev
|
|
|
|
freebsd_native_packages := freebsd_base
|
|
freebsd_packages :=
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages := darwin_sdk native_clang native_cctools native_libtapi
|
|
endif
|
|
darwin_packages :=
|
|
|
|
android_native_packages := android_ndk
|
|
android_packages :=
|
|
|