cd9a2f5c28
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
24 lines
378 B
Makefile
24 lines
378 B
Makefile
BINDIR?= /usr/bin
|
|
|
|
PROG= crontab
|
|
SRCS= crontab.c
|
|
CFLAGS+= -I${.CURDIR}/../cron
|
|
MAN1= crontab.1
|
|
MAN5= crontab.5
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LDDESTDIR+= -L${.OBJDIR}/../lib
|
|
DPADD+= ${.OBJDIR}/../lib/libcron.a
|
|
.else
|
|
LDDESTDIR+= -L${.CURDIR}/../lib
|
|
DPADD+= ${.CURDIR}/../lib/libcron.a
|
|
.endif
|
|
|
|
LDADD+= -lcron
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|