BSD support in Makefile

This commit is contained in:
Daniel Wróbel 2014-09-12 23:51:52 +02:00
parent c9d69c3990
commit 27bd1b38d3
1 changed files with 18 additions and 0 deletions

View File

@ -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