summaryrefslogtreecommitdiff
path: root/Makefile
blob: ecfc1c5a9768d9b763f57ee578e411ebca7ab165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# OpenRC Makefile
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

include Makefile.inc

SUBDIR=

MKCONFD?=	yes
ifeq ($(MKCONFD),yes)
SUBDIR+=	conf.d
endif

MKETC?=		yes
ifeq ($(MKETC),yes)
SUBDIR+=	etc
endif

MKINITD?=	yes
ifeq ($(MKINITD),yes)
SUBDIR+=	init.d
endif

MKLOCALD?=	yes
ifeq ($(MKLOCALD),yes)
SUBDIR+=	local.d
endif

MKMAN?=		yes
ifeq ($(MKMAN),yes)
SUBDIR+=	man
endif

MKSCRIPTS?=	yes
ifeq ($(MKSCRIPTS),yes)
SUBDIR+=	scripts
endif

SUBDIR+=	sh src

MKSYSCTLD?=	yes
ifeq ($(MKSYSCTLD),yes)
SUBDIR+=	sysctl.d
endif

# Build pkgconfig or not
MKPKGCONFIG?=	yes
ifeq (${MKPKGCONFIG},yes)
SUBDIR+=	pkgconfig
endif

# We need to ensure that runlevels is done last
MKRUNLEVELS?=	yes
ifeq ($(MKRUNLEVELS),yes)
SUBDIR+=	runlevels
endif

INSTALLAFTER=	_installafter

MK= 		mk
include ${MK}/sys.mk
include ${MK}/os.mk
include ${MK}/subdir.mk
include ${MK}/dist.mk
include ${MK}/git.mk

_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