blob: bf6ec874cc737f0c074c297cafb383097854f2a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# $FreeBSD$
#
# Most of the programs in this directory are completely useless for the
# NTP configuration that we provide by default.
# We provide the `md5' program as a public service.
CFLAGS+= -I${.CURDIR}/../include
DPADD= ${LIBNTP}
LDADD= ${LIBNTP}
PROG= md5
SRCS= md5driver.c
NOMAN=
install:
.include <bsd.prog.mk>
|