freebsd-dev/sbin/shutdown/Makefile
Pawel Jakub Dawidek 6868734cbe For compatibility with Linux and Solaris add poweroff(8).
It is implemented as a hard link to shutdown(8) and it is equivalent of:

	# shutdown -p now

While I'm here put one line of usage into one line of C code so it is easier to
grep(1) and separate unrelated code with empty line.

MFC after:	2 weeks
2010-12-30 18:06:31 +00:00

14 lines
224 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/5/93
# $FreeBSD$
PROG= shutdown
MAN= shutdown.8
LINKS= ${BINDIR}/shutdown ${BINDIR}/poweroff
MLINKS= shutdown.8 poweroff.8
BINOWN= root
BINGRP= operator
BINMODE=4550
.include <bsd.prog.mk>