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