Differences From
Artifact [e41ea1fc6e]:
︙ | | | ︙ | |
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.include "${starter}"
.endfor
.if !target(_service) || !target(_earlyservice)
.error No service handler defined.
.endif
#.MAKE.JOBS?=2
.SILENT:
install:
install rc /etc/rc
SCRIPTS=${:!find /etc/mrc -name '*.service.mk'!:S/\/etc\/mrc\///}
.if defined(AUTOBOOT)
.include "init.mk"
.ERROR:
: ERROR: ABORTING BOOT (sending SIGTERM to parent)!
: target ${.ERROR_TARGET} failed to execute:
|
<
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.include "${starter}"
.endfor
.if !target(_service) || !target(_earlyservice)
.error No service handler defined.
.endif
.SILENT:
install:
install rc /etc/rc
SCRIPTS=${:!find /etc/mrc -name '*.service.mk'!:S/\/etc\/mrc\///}
TARGETS:=${SCRIPTS:S/.service.mk//}
.if defined(AUTOBOOT)
.include "init.mk"
.ERROR:
: ERROR: ABORTING BOOT (sending SIGTERM to parent)!
: target ${.ERROR_TARGET} failed to execute:
|
︙ | | | ︙ | |
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
netif:
newsyslog:
.endif
test:
echo Empty target.
TARGETS:=${SCRIPTS:S/.service.mk//}
.for file in ${SCRIPTS}
#.info ${file}
.include "${file}"
.if !target(${file:S/.service.mk//})
${file:S/.service.mk//}: _service
.endif
.if !target(${file:S/.service.mk/_status/})
|
<
<
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
netif:
newsyslog:
.endif
test:
echo Empty target.
.for file in ${SCRIPTS}
#.info ${file}
.include "${file}"
.if !target(${file:S/.service.mk//})
${file:S/.service.mk//}: _service
.endif
.if !target(${file:S/.service.mk/_status/})
|
︙ | | | ︙ | |