11 lines
233 B
Makefile
11 lines
233 B
Makefile
# Makefile for shutdown / halt / reboot.
|
|
|
|
PROGS= shutdown halt
|
|
SRCS.shutdown= shutdown.c sh_wall.c log.c
|
|
SRCS.halt= halt.c log.c
|
|
BINMODE= 4754
|
|
LINKS+= ${BINDIR}/halt ${BINDIR}/reboot
|
|
MAN.shutdown=
|
|
MAN.halt=
|
|
|
|
.include <minix.prog.mk>
|