2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-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.
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2015-01-24 00:22:31 +05:30
|
|
|
TOP:= ${dir ${realpath ${firstword ${MAKEFILE_LIST}}}}
|
|
|
|
MK= ${TOP}/mk
|
|
|
|
|
|
|
|
include ${TOP}/Makefile.inc
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2017-12-08 00:23:04 +05:30
|
|
|
SUBDIR= conf.d etc init.d local.d man scripts sh src support sysctl.d
|
|
|
|
|
|
|
|
# Build bash completion or not
|
|
|
|
MKBASHCOMP?= no
|
|
|
|
ifeq (${MKBASHCOMP},yes)
|
|
|
|
SUBDIR+= bash-completion
|
|
|
|
endif
|
2012-07-09 01:32:11 +05:30
|
|
|
|
2009-10-08 04:49:18 +05:30
|
|
|
# Build pkgconfig or not
|
2011-02-02 23:40:58 +05:30
|
|
|
MKPKGCONFIG?= yes
|
|
|
|
ifeq (${MKPKGCONFIG},yes)
|
|
|
|
SUBDIR+= pkgconfig
|
|
|
|
endif
|
2009-10-08 04:49:18 +05:30
|
|
|
|
2017-12-08 00:23:04 +05:30
|
|
|
# Build zsh completion or not
|
|
|
|
MKZSHCOMP?= no
|
|
|
|
ifeq (${MKZSHCOMP},yes)
|
|
|
|
SUBDIR+= zsh-completion
|
|
|
|
endif
|
|
|
|
|
2019-02-23 02:49:33 +05:30
|
|
|
# We need to ensure that runlevels is done last other than test
|
2008-03-03 02:44:01 +05:30
|
|
|
SUBDIR+= runlevels
|
2019-02-23 02:49:33 +05:30
|
|
|
SUBDIR+= test
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-01-10 22:05:59 +05:30
|
|
|
INSTALLAFTER= _installafter
|
2008-01-10 22:18:02 +05:30
|
|
|
|
2008-01-11 23:59:47 +05:30
|
|
|
include ${MK}/sys.mk
|
2008-01-10 22:18:02 +05:30
|
|
|
include ${MK}/os.mk
|
|
|
|
include ${MK}/subdir.mk
|
|
|
|
include ${MK}/dist.mk
|
2014-12-05 23:25:16 +05:30
|
|
|
include ${MK}/gitver.mk
|
2008-01-10 22:27:05 +05:30
|
|
|
|
|
|
|
_installafter:
|
2012-09-21 02:34:48 +05:30
|
|
|
ifeq (${MKPREFIX},yes)
|
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
2012-09-23 21:41:23 +05:30
|
|
|
else ifneq (${OS},Linux)
|
2009-05-24 01:08:12 +05:30
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
2012-02-23 08:14:32 +05:30
|
|
|
endif
|
2009-05-24 01:08:12 +05:30
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
|
|
|
|
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
|