a06e2ab395
import/switch of: init, getty, reboot, halt, shutdown, wall, last changes: . change reboot() call to netbsd prototype and args . allows pristine <utmp.h> . use clean <sys/reboot.h> instead of <minix/reboot.h> . implement TIOCSCTTY for use by getty so getty can get controlling terminal from init's child(ren) . allow NULL envp for exec Change-Id: I5ca02cb4230857140c08794bbfeba7df982c58a3
25 lines
367 B
Makefile
25 lines
367 B
Makefile
# Makefile for all system servers.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKIMAGEONLY} == "yes"
|
|
|
|
SUBDIR= ds input mfs pfs pm rs sched vfs vm
|
|
|
|
.else
|
|
|
|
SUBDIR= ds ext2 inet input ipc is iso9660fs \
|
|
mfs pfs pm procfs rs sched vfs vm devman
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+= hgfs vbfs
|
|
.endif
|
|
|
|
.if ${MKLWIP} == "yes"
|
|
SUBDIR += lwip
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|