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
|
|
|
|
2011-11-16 04:36:10 +05:30
|
|
|
SUBDIR= conf.d doc etc init.d local.d man net scripts sh src
|
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:
|
2009-05-24 01:08:12 +05:30
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
|
|
|
|
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
|
|
|
|
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
|