21 lines
396 B
Makefile
21 lines
396 B
Makefile
# $NetBSD: Makefile,v 1.12 2016/03/13 00:32:09 dholland Exp $
|
|
|
|
USE_FORT?= yes # setuid
|
|
|
|
PROG= at
|
|
SRCS= at.c panic.c parsetime.c perm.c privs.c stime.c
|
|
LINKS= ${BINDIR}/at ${BINDIR}/atq \
|
|
${BINDIR}/at ${BINDIR}/atrm \
|
|
${BINDIR}/at ${BINDIR}/batch
|
|
MLINKS= at.1 batch.1 \
|
|
at.1 atq.1 \
|
|
at.1 atrm.1
|
|
|
|
BINOWN= root
|
|
BINMODE= 4555
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|