2007-12-14 22:12:38 +08:00
|
|
|
# OpenRC Makefile
|
2009-05-01 22:11:40 +08:00
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 07:46:31 +08:00
|
|
|
# Released under the 2-clause BSD license.
|
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
|
|
|
|
2012-07-09 04:02:11 +08:00
|
|
|
SUBDIR= conf.d etc init.d local.d man scripts sh src sysctl.d
|
|
|
|
|
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
|