aboutsummaryrefslogtreecommitdiff
path: root/contrib/depends/Makefile
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2019-11-11 08:34:47 +0000
committerHoward Chu <hyc@symas.com>2019-11-14 07:03:04 +0000
commitcca6e5c645b51d4dfed7021be12d993d17fab0d6 (patch)
tree2e27def7e859335449cc4f66aa6369a417b37f49 /contrib/depends/Makefile
parentgitian: Parametrize target platforms (diff)
downloadmonero-cca6e5c645b51d4dfed7021be12d993d17fab0d6.tar.xz
depends: Add FreeBSD support
Diffstat (limited to 'contrib/depends/Makefile')
-rw-r--r--contrib/depends/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/depends/Makefile b/contrib/depends/Makefile
index 7eedee15e..28ec972e4 100644
--- a/contrib/depends/Makefile
+++ b/contrib/depends/Makefile
@@ -58,6 +58,7 @@ ifeq ($(host_os),)
host_os:=$(findstring linux,$(full_host_os))
endif
host_os+=$(findstring darwin,$(full_host_os))
+host_os+=$(findstring freebsd,$(full_host_os))
host_os+=$(findstring mingw32,$(full_host_os))
host_os:=$(strip $(host_os))
ifeq ($(host_os),)
@@ -74,6 +75,9 @@ endif
ifeq ($(host_os),linux)
host_cmake=Linux
endif
+ifeq ($(host_os),freebsd)
+host_cmake=FreeBSD
+endif
ifeq ($(host_os),darwin)
host_cmake=Darwin
endif