[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.6, Tue May 14 18:05:39 2002 UTC (22 years, 1 month ago) by millert
Branch: MAIN
Changes since 1.5: +3 -9 lines

Major changes:

Job names are now "runtime.queue" where runtime is when the job will run
in Unix time format.  This is what SysV at does and allows us to nuke
the .SEQ file.

Historic BSD options for atq and atrm are now implemented;
atq and atrm get their own man pages.

At no longer does anything with the -v flag.  We print the execution
time when jobs are submitted so there is no need.

Most *scanf() usage is gone (one remains in atrun).

Better sanity checks in atrun.

Random style/cleanup.

With these changes we have the best of both worlds; POSIX compliance with
the traditional BSD features.

#	$OpenBSD: Makefile,v 1.6 2002/05/14 18:05:39 millert Exp $

PROG=	at
SRCS=	at.c panic.c parsetime.c perm.c
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

.include <bsd.prog.mk>