freebsd-dev/usr.bin/at/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
736 B
Makefile
Raw Normal View History

1995-04-12 02:42:39 +00:00
.include "${.CURDIR}/Makefile.inc"
CONFS= atrun
CONFSDIR= /etc/cron.d
CONFSNAME= at
PROG= at
2001-03-26 07:28:26 +00:00
SRCS= at.c panic.c parsetime.c perm.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
NO_WFORMAT=
BINOWN= root
BINMODE= 4555
2001-03-27 10:52:19 +00:00
CLEANFILES+= at.1
2001-03-27 10:52:19 +00:00
at.1: at.man
@${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \
1995-04-12 02:42:39 +00:00
sed -e \
"s@_ATSPOOL_DIR@$(ATSPOOL_DIR)@g; \
s@_ATJOB_DIR@$(ATJOB_DIR)@g; \
s@_DEFAULT_BATCH_QUEUE@$(DEFAULT_BATCH_QUEUE)@g; \
s@_DEFAULT_AT_QUEUE@$(DEFAULT_AT_QUEUE)@g; \
s@_LOADAVG_MX@$(LOADAVG_MX)@g; \
s@_PERM_PATH@$(PERM_PATH)@g; \
s@_LOCKFILE@$(LOCKFILE)@g" \
2001-03-26 07:28:26 +00:00
< ${.ALLSRC} > ${.TARGET}
2001-03-27 10:52:19 +00:00
.include <bsd.prog.mk>