[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / at

File: [local] / src / usr.bin / at / Makefile (download)

Revision 1.10, Sat Oct 31 12:19:41 2015 UTC (8 years, 7 months ago) by millert
Branch: MAIN
Changes since 1.9: +2 -2 lines

Split client-only (at, crontab) functions out of misc.c and into
client.c.  Move truly common functions into common.c.  This avoids
dead code in the at and crontab commands.

#	$OpenBSD: Makefile,v 1.10 2015/10/31 12:19:41 millert Exp $

PROG=	at
SRCS=	at.c client.c common.c parsetime.c
CRONDIR=${.CURDIR}/../../usr.sbin/cron
CFLAGS+=-I${CRONDIR}
MAN=	at.1 atrm.1 atq.1
LINKS=	${BINDIR}/at ${BINDIR}/atq \
	${BINDIR}/at ${BINDIR}/atrm \
	${BINDIR}/at ${BINDIR}/batch
MLINKS=	at.1 batch.1
BINGRP=	crontab
BINMODE= 2555

.PATH: ${CRONDIR}

.include <bsd.prog.mk>