2015-12-04 16:52:19 -06:00
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-20 20:07:00 -05:00
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-04 16:52:19 -06:00
|
|
|
#
|
|
|
|
# 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
|
2021-12-20 20:07:00 -05:00
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-04 16:52:19 -06:00
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-04-05 11:18:42 +00:00
|
|
|
|
2015-01-23 12:52:31 -06:00
|
|
|
TOP:= ${dir ${realpath ${firstword ${MAKEFILE_LIST}}}}
|
|
|
|
MK= ${TOP}/mk
|
|
|
|
|
|
|
|
include ${TOP}/Makefile.inc
|
2007-04-05 11:18:42 +00:00
|
|
|
|
2017-12-07 12:53:04 -06:00
|
|
|
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-08 15:02:11 -05:00
|
|
|
|
2009-10-08 00:19:18 +01:00
|
|
|
# Build pkgconfig or not
|
2011-02-02 12:10:58 -06:00
|
|
|
MKPKGCONFIG?= yes
|
|
|
|
ifeq (${MKPKGCONFIG},yes)
|
|
|
|
SUBDIR+= pkgconfig
|
|
|
|
endif
|
2009-10-08 00:19:18 +01:00
|
|
|
|
2017-12-07 12:53:04 -06:00
|
|
|
# Build zsh completion or not
|
|
|
|
MKZSHCOMP?= no
|
|
|
|
ifeq (${MKZSHCOMP},yes)
|
|
|
|
SUBDIR+= zsh-completion
|
|
|
|
endif
|
|
|
|
|
2019-02-22 15:19:33 -06:00
|
|
|
# We need to ensure that runlevels is done last other than test
|
2008-03-02 21:14:01 +00:00
|
|
|
SUBDIR+= runlevels
|
2019-02-22 15:19:33 -06:00
|
|
|
SUBDIR+= test
|
2007-04-05 11:18:42 +00:00
|
|
|
|
2008-01-10 16:35:59 +00:00
|
|
|
INSTALLAFTER= _installafter
|
2008-01-10 16:48:02 +00:00
|
|
|
|
2008-01-11 18:29:47 +00:00
|
|
|
include ${MK}/sys.mk
|
2008-01-10 16:48:02 +00:00
|
|
|
include ${MK}/os.mk
|
|
|
|
include ${MK}/subdir.mk
|
|
|
|
include ${MK}/dist.mk
|
2014-12-05 11:55:16 -06:00
|
|
|
include ${MK}/gitver.mk
|
2008-01-10 16:57:05 +00:00
|
|
|
|
|
|
|
_installafter:
|
2012-09-20 16:04:48 -05:00
|
|
|
ifeq (${MKPREFIX},yes)
|
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
2012-09-23 11:11:23 -05:00
|
|
|
else ifneq (${OS},Linux)
|
2009-05-23 20:38:12 +01:00
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
2012-02-22 20:44:32 -06:00
|
|
|
endif
|
2009-05-23 20:38:12 +01:00
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
|
|
|
|
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
|