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
19 lines
328 B
Makefile
19 lines
328 B
Makefile
# $NetBSD: Makefile,v 1.61 2012/02/07 19:13:31 joerg Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= \
|
|
fingerd ftpd \
|
|
ld.elf_so \
|
|
getty
|
|
|
|
.if defined(__MINIX)
|
|
SUBDIR+= makewhatis
|
|
.else
|
|
.if ${MKMAKEMANDB} == "no"
|
|
SUBDIR+= getNAME makewhatis
|
|
.endif
|
|
.endif # defined(__MINIX)
|
|
|
|
.include <bsd.subdir.mk>
|