4c49e2a210
- reorganise the Makefiles: the order of variables was not the usual one. Explained gently by: bde
19 lines
234 B
Makefile
19 lines
234 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/ntp/util
|
|
|
|
PROG= ntptime
|
|
|
|
SRCS= ntptime.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
|
|
|
|
NOMAN= yes
|
|
|
|
DPADD= ${LIBNTP}
|
|
LDADD= ${LIBNTP}
|
|
|
|
.include <bsd.prog.mk>
|