90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
17 lines
226 B
Makefile
17 lines
226 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= /usr/bin
|
|
|
|
PROG= crontab
|
|
MAN= crontab.1 crontab.5
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
CFLAGS+= -I${.CURDIR}/../cron
|
|
|
|
DPADD= ${LIBCRON} ${LIBUTIL}
|
|
LDADD= ${LIBCRON} -lutil
|
|
|
|
.include <bsd.prog.mk>
|