openrc/Makefile

35 lines
814 B
Makefile
Raw Normal View History

# OpenRC Makefile
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
NAME= openrc
2009-02-11 12:24:58 +05:30
VERSION= 0.4.3
PKG= ${NAME}-${VERSION}
2009-04-18 04:53:31 +05:30
SUBDIR= conf.d etc init.d man sh src
# Build our old net foo or not
_OLDNET_SH= case "${MKOLDNET}" in \
[Yy][Ee][Ss]) echo "net doc";; \
*) echo "";; \
esac
_OLDNET!= ${_OLDNET_SH}
SUBDIR+= ${_OLDNET}$(shell ${_OLDNET_SH})
# We need to ensure that runlevels is done last
SUBDIR+= runlevels
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
include ${MK}/git.mk
2008-01-10 22:27:05 +05:30
_installafter:
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version