freebsd-dev/libexec/atrun/Makefile
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00

27 lines
456 B
Makefile

# $FreeBSD$
MAINSRC= ${.CURDIR}/../../usr.bin/at
.include "$(MAINSRC)/Makefile.inc"
PROG= atrun
MAN8= atrun.8
SRCS= atrun.c gloadavg.c
BINDIR= $(ATLIB_DIR)
MANSRC= .
CLEANFILES += ${MAN8}
MANDEPEND = ${MAN8}
CFLAGS+= -I$(MAINSRC) -I${.CURDIR}
${MAN8}: atrun.man
sed -e \
"s@_ATSPOOL_DIR@$(ATSPOOL_DIR)@g; \
s@_ATJOB_DIR@$(ATJOB_DIR)@g; \
s@_ATLIB_DIR@$(ATLIB_DIR)@g; \
s@_LOADAVG_MX@$(LOADAVG_MX)@g;" \
< $? > $@
.include <bsd.prog.mk>