diff options
author | Stanko K.R <me@stanko.io> | 2019-05-04 22:47:01 +0200 |
---|---|---|
committer | Stanko K.R <me@stanko.io> | 2019-05-04 22:47:01 +0200 |
commit | 2b2f17f3109923ab5179e613f3cd74254b9d0e80 (patch) | |
tree | acc41c610827c277fdbd72a017846fda7a19ba43 /Makefile | |
parent | c991d448786d9f3fbea142d55473608797e95cdd (diff) |
Prefix binary path correctly on MacOS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,11 @@ .POSIX: -PREFIX = /usr +OS = $(shell uname -s) +ifeq ($(OS), Darwin) + PREFIX = /usr/local +else + PREFIX = /usr +endif MANPREFIX = $(PREFIX)/share/man install: |