16 lines
290 B
Makefile
16 lines
290 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.PATH: ${.CURDIR}/../../../contrib/ntp/sntp
|
||
|
|
||
|
PROG= sntp
|
||
|
NOMAN= yes
|
||
|
SRCS= internet.c main.c socket.c timing.c unix.c
|
||
|
|
||
|
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../ \
|
||
|
-DPACKAGE=\"sntp\" -DVERSION=\"1.6\"
|
||
|
|
||
|
DPADD= ${LIBM}
|
||
|
LDADD= -lm
|
||
|
|
||
|
.include <bsd.prog.mk>
|