2007-12-14 19:42:38 +05:30
|
|
|
# OpenRC Makefile
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2009-10-08 04:49:18 +05:30
|
|
|
include Makefile.inc
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2012-07-09 01:32:11 +05:30
|
|
|
SUBDIR= conf.d etc init.d local.d man scripts sh src sysctl.d
|
|
|
|
|
|
|
|
# Build our old net foo or not
|
2012-07-10 22:48:06 +05:30
|
|
|
ifeq (${MKNET},oldnet)
|
2012-07-09 01:32:11 +05:30
|
|
|
SUBDIR+= net doc
|
|
|
|
endif
|
2009-04-18 04:53:31 +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
|
|
|
|
2008-03-03 02:44:01 +05:30
|
|
|
# We need to ensure that runlevels is done last
|
|
|
|
SUBDIR+= runlevels
|
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
|
|
|
|
|
|
|
MK= mk
|
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
|
2009-05-24 01:08:12 +05:30
|
|
|
include ${MK}/git.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
|