mirror of https://github.com/Syncplay/syncplay
BSD support in Makefile
This commit is contained in:
parent
c9d69c3990
commit
27bd1b38d3
18
GNUmakefile
18
GNUmakefile
|
@ -4,9 +4,27 @@ ifndef VLC_SUPPORT
|
|||
VLC_SUPPORT = true
|
||||
endif
|
||||
|
||||
ifeq ($(shell uname)),FreeBSD)
|
||||
BSD = true
|
||||
endif
|
||||
ifeq ($(shell uname)),NetBSD)
|
||||
BSD = true
|
||||
endif
|
||||
ifeq ($(shell uname)),OpenBSD)
|
||||
BSD = true
|
||||
endif
|
||||
ifeq ($(shell uname)),DragonFly)
|
||||
BSD = true
|
||||
endif
|
||||
|
||||
ifeq ($(SINGLE_USER),false)
|
||||
ifneq ($(BSD),true)
|
||||
BASE_PATH = /usr
|
||||
VLC_LIB_PATH = ${PREFIX}/usr/lib
|
||||
else
|
||||
BASE_PATH = /usr/local
|
||||
VLC_LIB_PATH = ${PREFIX}/usr/local/lib
|
||||
endif
|
||||
else
|
||||
BASE_PATH = ${HOME}/.local
|
||||
VLC_LIB_PATH = ${HOME}/.local/share
|
||||
|
|
Loading…
Reference in New Issue