06c779979a
libraries so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Get the default BINDIR correctly (by including ../Makefile.inc recursively. Override the default it it is wrong. Don't override defaults when the defaults are correct.
16 lines
225 B
Makefile
16 lines
225 B
Makefile
# $Id$
|
|
|
|
PROG= crontab
|
|
CFLAGS+=-I${.CURDIR}/../cron
|
|
DPADD= ${LIBCRON} ${LIBUTIL}
|
|
LDADD= ${LIBCRON} -lutil
|
|
MAN1= crontab.1
|
|
MAN5= crontab.5
|
|
|
|
BINDIR= /usr/bin
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|