openrc/Makefile

40 lines
867 B
Makefile
Raw Normal View History

# OpenRC Makefile
2009-05-01 15:11:40 +01:00
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2009-10-08 00:19:18 +01:00
include Makefile.inc
SUBDIR= conf.d etc init.d local.d man scripts sh src sysctl.d
# Build our old net foo or not
ifeq (${MKNET},oldnet)
SUBDIR+= net doc
endif
2009-04-17 23:23:31 +00:00
2009-10-08 00:19:18 +01:00
# Build pkgconfig or not
MKPKGCONFIG?= yes
ifeq (${MKPKGCONFIG},yes)
SUBDIR+= pkgconfig
endif
2009-10-08 00:19:18 +01:00
# We need to ensure that runlevels is done last
SUBDIR+= runlevels
INSTALLAFTER= _installafter
2008-01-10 16:48:02 +00:00
MK= mk
2008-01-11 18:29:47 +00:00
include ${MK}/sys.mk
2008-01-10 16:48:02 +00:00
include ${MK}/os.mk
include ${MK}/subdir.mk
include ${MK}/dist.mk
include ${MK}/git.mk
2008-01-10 16:57:05 +00:00
_installafter:
ifeq (${MKPREFIX},yes)
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
else ifneq (${OS},Linux)
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
endif
${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version