openrc/mk/sys.mk

72 lines
1.7 KiB
Makefile
Raw Normal View History

2008-01-11 21:33:38 +05:30
# Generic system definitions
# Copyright (c) 2008-2015 The OpenRC Authors.
# See the Authors file at the top-level directory of this distribution and
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
#
# This file is part of OpenRC. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
2008-01-11 21:33:38 +05:30
AR?= ar
2008-03-26 19:57:46 +05:30
CP?= cp
PKG_CONFIG?= pkg-config
2008-01-11 21:33:38 +05:30
ECHO?= echo
INSTALL?= install
RANLIB?= ranlib
2008-03-26 19:57:46 +05:30
SED?= sed
SH= /bin/sh
2008-01-11 21:33:38 +05:30
2012-01-22 05:47:42 +05:30
PREFIX?=
ifeq (${PREFIX},)
UPREFIX= /usr
else
UPREFIX= ${PREFIX}
ifeq (${MKPREFIX},yes)
UPREFIX= ${PREFIX}/usr
endif
endif
LOCAL_PREFIX= $(UPREFIX)/local
2008-01-11 21:33:38 +05:30
PICFLAG?= -fPIC
2008-03-26 10:38:56 +05:30
SYSCONFDIR?= ${PREFIX}/etc
2008-03-05 17:57:11 +05:30
INITDIR?= ${SYSCONFDIR}/init.d
CONFDIR?= ${SYSCONFDIR}/conf.d
2017-12-07 23:00:32 +05:30
CONFMODE?= 0644
LOCALDIR?= ${SYSCONFDIR}/local.d
SYSCTLDIR?= ${SYSCONFDIR}/sysctl.d
2008-03-05 17:57:11 +05:30
BINDIR?= ${PREFIX}/bin
BINMODE?= 0755
2008-01-11 21:33:38 +05:30
SBINDIR?= ${PREFIX}/sbin
SBINMODE?= 0755
2008-03-02 03:42:33 +05:30
INCDIR?= ${UPREFIX}/include
INCMODE?= 0644
2008-01-11 21:33:38 +05:30
2008-03-05 02:14:39 +05:30
_LIBNAME_SH= case `readlink /lib` in /lib64|lib64) echo "lib64";; *) echo "lib";; esac
_LIBNAME:= $(shell ${_LIBNAME_SH})
LIBNAME?= ${_LIBNAME}
2008-03-02 03:42:33 +05:30
LIBDIR?= ${UPREFIX}/${LIBNAME}
LIBMODE?= 0644
2008-01-11 21:33:38 +05:30
LIBEXECDIR?= ${PREFIX}/libexec/rc
PKGCONFIGDIR?= ${UPREFIX}/${LIBNAME}/pkgconfig
2008-03-25 22:54:54 +05:30
MANPREFIX?= ${UPREFIX}/share
2008-03-26 02:09:31 +05:30
MANDIR?= ${MANPREFIX}/man
MANMODE?= 0644
BASHCOMPDIR?= ${UPREFIX}/share/bash-completion/completions
DATADIR?= ${UPREFIX}/share/openrc
DATAMODE?= 0644
2008-03-02 03:42:33 +05:30
DOCDIR?= ${UPREFIX}/share/doc
2012-01-22 05:47:42 +05:30
DOCMODE?= 0644
2008-02-01 18:54:09 +05:30
2017-12-07 23:00:32 +05:30
ZSHCOMPDIR?= ${UPREFIX}/share/zsh/site-functions