summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-03-22 16:21:03 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-03-22 16:21:03 +0100
commitc36dbe6eb447239824f0014ec6beae2df9f42a7c (patch)
tree62c0655c362b82b340f3084bee1d0a9ccdab8a8a /Makefile
parent6a9e2743d149fecd5d7706b273dc69a45fe25ea2 (diff)
Fix build on macOS.
- Use GNU install, use the correct extension for dynamic libraries. - Fixes #226.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ba9363f4..d895cefe 100644
--- a/Makefile
+++ b/Makefile
@@ -24,11 +24,16 @@ RSYNC_FLAGS ?=
CARGO ?= cargo
GIT ?= git
RSYNC ?= rsync
-INSTALL ?= install
TAR ?= tar
XZ ?= xz
GPG ?= gpg
+ifeq ($(shell uname -s), Darwin)
+ INSTALL ?= ginstall
+else
+ INSTALL ?= install
+endif
+
VERSION ?= $(shell grep '^version[[:space:]]*=[[:space:]]*' Cargo.toml | cut -d'"' -f2)
# Make sure subprocesses pick these up.